Have made a simple racing game with two lines on track. These lines are sprites.
I Want to be able to make a counter go up every time you touch the second one, but only if the first one has been touched.
I also want a timer to stop at 10 laps.
About to load up what i have done so far, please help!
Thanks
Offline
Create a variable by the name of Timer.
When the race starts, continuously change the timer by 1.
When it ends, stop it.
The variable is now a timer.
Hope that helps
If you need any sort of specific script, don't hesitate to ask!
Offline
HotHead25 wrote:
Its brilliant!
But how can i get it to say your total time?
Add the items of the list together. For example, if you want 3 laps, use this script:
set Total to ( ( (item (1) of list) + (item (2) of list) ) + (item (3) of list) )
Offline