View Single Post
  #2  
Old 03-30-2007, 11:15 PM
Bl0nkt Bl0nkt is offline
Era Developer
Bl0nkt's Avatar
Join Date: Mar 2005
Location: Pennsylvania
Posts: 1,589
Bl0nkt will become famous soon enough
Send a message via AIM to Bl0nkt
Quote:
Originally Posted by colin012 View Post
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.
Reply With Quote