Python Forum

Full Version: python ticks
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm trying to make an object wait and then move every 10,000 ticks. say I had 104 ticks and every time I click space bar the object waits for 10,000 ticks and then moves left. and the ticks continue... now this time I'm at 30,000 ticks and I click the space bar again wait 10 seconds and move left. how would I do that?
Thanks for the help but I don't understand that document. could you explain?

I was thinking more like... for every 10,000 ticks: x1=x1-20 to move the character left. not sure how to write that tho.