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;
}