Thread: x=+.5
View Single Post
  #4  
Old 12-31-2001, 01:33 AM
kyle0654 kyle0654 is offline
-. .`
kyle0654's Avatar
Join Date: Mar 2001
Posts: 1,000
kyle0654 will become famous soon enough
It's not Stefan's problem. The scripts are the problem. If you have something like this:
NPC Code:

x+=.5;
if (playertouchsme) {
message hi;
}



Then every action that triggers that npc (playertouchsme, washit, playerenters, etc.) will move it, since it will run past the x+=.5 part every time, which has no conditions for running.
Reply With Quote