Thread: Looping
View Single Post
  #23  
Old 12-21-2001, 08:22 PM
btedji btedji is offline
bryan986
btedji's Avatar
Join Date: Apr 2001
Location: Force 10
Posts: 1,153
btedji is on a distinguished road
Send a message via ICQ to btedji Send a message via AIM to btedji Send a message via Yahoo to btedji
Quote:
Originally posted by nyghtGT
ohh and if he did not know:
NPC Code:

NPC Code:

i=1;
while (i>=0) {
i++;
}

is the same as (does the same thing as):

for (i=0;i>=0;i++) {}




Your not setting i to the same thing both times.
Reply With Quote