View Single Post
  #1  
Old 06-22-2012, 11:54 PM
Stowen Stowen is offline
Graalian since '01
Join Date: Sep 2005
Location: Massachusets, USA
Posts: 156
Stowen will become famous soon enough
Send a message via AIM to Stowen Send a message via MSN to Stowen
Trying to make a Timer

Hello. I'm trying to make a countdown timer, but it doesn't seem to be working. I'm also not sure of the best way to go about it.

Here is what I have so far:

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
this.timer == 15;
  
this.chat "Countdown";
}

function 
onPlayerChats() {
  if (
player.chat == "/count") {
    
this.timer == 15;
    
onTimeOut();
  }
}

function 
onTimeOut() {
  
this.timer 1;
  
this.chat this.timer;
  
setTimer(1);

Reply With Quote