Quote:
|
Originally Posted by Luigi203
Uuuh? If its not used properly it will crash a server...? I used it several times and it never crashed the server.
NPC Code:
if (created) i = 0;
while (i < 10) i++;
|
Why not just use for (i=0; i<0; i++)?
Anyway. Using while serverside to run as many loops as it possibly can (not just 10 in your case) will likely cause problems on a server.