View Single Post
  #3  
Old 06-19-2002, 01:26 PM
user13-xo user13-xo is offline
Registered User
Join Date: Nov 2001
Location: California
Posts: 297
user13-xo is on a distinguished road
Send a message via AIM to user13-xo
Re: Need help on this NPC!

I noticed another scripting problem other then the one mikepg pointed out.
NPC Code:

if (actionserverside) {
setcharani #p(0),#p(1);
}
//#CLIENTSIDE
if (created) {
this.dontmove=false;
}
if (actionleftmouse&&keydown2(keycode(b),ignorecase)& &keydown2(keycode(r),ignorecase)&&this.dontmove==f alse){
this.dontmove=true;
triggeraction x+1.5,y+2,serverside,shelf1;
sleep 4;
triggeraction x+1.5,y+2,serverside,shelf2;
this.dontmove=false;
}