View Single Post
  #15  
Old 08-26-2011, 04:37 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Quote:
Originally Posted by Astram View Post
But, I can't seem to get it down to 0...
Please read nearly every post in this thread. It's been said countless times that timevar2 is an auto-incrementing variable based on the amount of seconds since a specific time period.

If you just want a countdown do something like this:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
this.ticks 100;
  
onTimeout();
}

function 
onCreated() {
  
this.ticks--;
  
player.chat this.ticks;
  
setTimer(1);

__________________
Quote:
Reply With Quote