Thread: Possible?
View Single Post
  #19  
Old 05-18-2002, 10:53 PM
Falcor Falcor is offline
Darth Cucumber
Falcor's Avatar
Join Date: Mar 2001
Location: At School
Posts: 2,874
Falcor is on a distinguished road
Send a message via ICQ to Falcor Send a message via AIM to Falcor Send a message via MSN to Falcor Send a message via Yahoo to Falcor
This might work a little better

NPC Code:

if(created || playerenters) {
//intalize vars
this.maxidletime = 30; //time (in seconds) that a player can idle for

}
if(timeout) {
if(this.pos[0] != playerx || this.pos[1] != playery)
this.move=0;
else
this.move+=.05;
this.pos = {playerx,playery};
if(this.move > this.maxidletime) {
//whatever you want to do
}
timeout = 0.05;
}



This would check if you acually MOVED from a spot.
__________________

subliminal message: 1+1=3
Reply With Quote