Quote:
Originally Posted by Tigairius
You can also do:
PHP Code:
while(1 == 1) { this.time++; message #v(this.time); sleep 1; }
|
Don't use a
while loop, it will probably stop at the maxlooplimit which is 10,000 by default. If you want an unending loop always use timers or scheduled events.
Even if you did use a while loop it should be
while (true) {}