In trying to script an npc it seems that the wash1t (cant spell it with an i becasue it gets censored) does not work on a serverside detection.
This is a class with a 32x32 size image that is on the server and shows up.
PHP Code:
function onCreated()
{
setshape 1,32,32;
}
function onWash1t() //change 1 to i if you test this
{
putleaps 0,x+.5,y+.5;
hide;
sleep 5;
show;
}
why is the onWash1t not detected?