Page 1 of 1

lap counting buggered!

PostPosted: Fri Apr 25, 2008 6:26 pm
by BloodRedDragon
Sup. problem with counting laps for racing game. I am trying to make it start on Lap 1/3 then move to Lap 2/3 but tis hard.
Any suggestions? (not i have tried using actor.textnumber = actor.textnumber +1 but it thinks its starting on 0)

Re: lap counting buggered!

PostPosted: Fri Apr 25, 2008 7:14 pm
by Kalladdolf
how to make it start at 1?
simple:
Create Actor ->
Code: Select all
actor.textNumber = 1;


but, anyway, the best thing to count stuff with is "variables".
you can create new ones, make them store certain values and make actor's behavior dependent on them.

Re: lap counting buggered!

PostPosted: Sat May 31, 2008 5:52 pm
by BloodRedDragon
thnx lol