How do I change the Distance traveled from 150 to every 150?
Thanks for the help :3
Develop games in your browser. Powerful, performant & highly capable.
Maybe try add a second instance variable called TargetDistanceTravelled which is initially 150. Compare DistanceTravelled to TargetDistanceTravelled and then when it exceeds the target increase TargetDistanceTravelled by 150.
That should work fine, thanks!