View Single Post
  #1  
Old 01-11-2006, 07:53 PM
Prozac Prozac is offline
one of the good guys
Prozac's Avatar
Join Date: Jan 2006
Posts: 245
Prozac is on a distinguished road
Send a message via AIM to Prozac
function onWash1t()

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?
Reply With Quote