View Single Post
  #6  
Old 11-02-2003, 03:48 AM
Loriel Loriel is offline
Somewhat rusty
Loriel's Avatar
Join Date: Mar 2001
Posts: 5,059
Loriel is a name known to allLoriel is a name known to allLoriel is a name known to allLoriel is a name known to all
Quote:
Originally posted by Neoreno
I thought Graal only did 10000 loops per second before it reached it's limit. (Granted, 10000 PMs in a second could kill anything).
It is 10000 iterations without delay, so....
NPC Code:
while (true) {
for (i = 0; i < 10000; i ++)
do_malicious_things();
sleep 0.1;
}

Reply With Quote