Home   Help Search Login Register  

Author Topic: Instead of a stopwatch  (Read 460 times)

0 Members and 1 Guest are viewing this topic.

cpt.Hawkeyez

  • Guest
Instead of a stopwatch
« on: 26 Dec 2003, 22:02:34 »
Code: [Select]
INstead of Keeping a freakin stopwatch right by me so I can see how long stuff needs to go before I add in a new command in Scripted Cutscenes the other day I saw a little script that ran a timer in titleText somewhere but I cant seem to find it, can anyone point me to this or would it be something like this

[Code]
#start
_timer = 1000

#loop
_timer = _timer+1
Titltext["_timer","plain down"]
? timer <= 1000: exit
~1
goto "loop"

SOmething like that except instead of displaying time it just shows timer every 1 second how can I make it display the numbers, 1-100
/CymPatheeY
« Last Edit: 26 Dec 2003, 22:05:35 by CymPaTheeY »

cpt.Hawkeyez

  • Guest
Re:Instead of a stopwatch
« Reply #1 on: 26 Dec 2003, 22:20:32 »
O Never Mind I read A tutorial and Figured it out


#start
_timer = 0

#loop
_timer = _timer+1
Titletext [Format [" %1", _timer],"plain down"]
? timer <= 1000: exit
~1
goto "loop"