Thread: gs2 obstacles
View Single Post
  #5  
Old 10-13-2005, 08:39 PM
Rick Rick is offline
PipBoy Extraordinaire!
Rick's Avatar
Join Date: Jul 2004
Location: Long Beach, California.
Posts: 831
Rick is on a distinguished road
HTML Code:
//#CLIENTSIDE
function onCreated()
{
  this.on = false;
  this.setTimer(0.05);
}

function onTimeout()
{
  if (this.on == false)
  {
    if (someCheck())
    {
      this.on = true;
    }
  }
  else
  {
    if (someOtherCheck())
    {
      this.on = false;
    }
  }
  
  this.setTimer(0.05);
}
Reply With Quote