Quote:
Originally Posted by EmChain
How do I make a warp in a door? The NPC one thats pre-defined isn't working.
Can someone give me the script please?
|
Try this:
PHP Code:
if (created)
{
setimg door.png;
setshape 1, 32, 32;
}
if (playertouchsme)
{
setlevel2 (levelname), (x), (y);
}
Replace (levelname), (x), and (y) with the level, x and y coordinates respectively.
Simply done
