View Single Post
  #11  
Old 12-17-2004, 07:14 AM
Lance Lance is offline
dark overlord
Lance's Avatar
Join Date: Sep 2003
Location: Space Jam Mountain
Posts: 5,072
Lance is on a distinguished road
Quote:
Originally Posted by Slash-P2P
NPC Code:
this.on = abs(this.on-1);

That's unnecessarily complicated - try this:

NPC Code:
this.on = 1 - this.on;

Reply With Quote