Quote:
Originally Posted by colin012
Timeout? Never saw that one and while you sure it's gs1
|
while (you_use_gs1) suck++;
Anyway, timeout in GS1:
PHP Code:
if (timeout) {
blahblahblah;
timeout=0.05;
}
GS2:
PHP Code:
function onTimeout() {
blahblahblah();
setTimer(0.05);
}
The above scripts loops every 0.05 seconds.