Thread: Timer
View Single Post
  #9  
Old 03-18-2008, 06:01 PM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
Quote:
Originally Posted by Furyshots View Post
What I forgot to mention it is for a school project so it needs to work on graal editor. Igi the script you send to me didnt work well.
NPC Code:

if (created) {
this.time = 0;
timeout = 0.05;
}
if (timeout) {
this.time++;
message #v(this.time);
timeout = 1;
}



You can also do:
NPC Code:

while(1 == 1) {
this.time++;
message #v(this.time);
sleep 1;
}


Up to you really. If you need help with anything else feel free to forum PM me or contact me via AIM (Tigairius).
__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote