I'm fiddling a bit with renpy lately again and now I'm trying something on base of the analog clock from the cookbook.
So far, I implemented the clock like in the recipe. Works fine!
Now I want it modified:
The variable minute should increment until a cerain value and show the result with every step.
I used the following code in the script:
Code: Select all
python:
while minutes <= 720:
minutes =+ 10
renpy.pause(0.05)
#
#
What it does: It starts the game, it shows the clock, the clockhands move by the value 10, the game stops. I can enter the game menu though.
I think it has something to do with the pause command.
Would someone please clearify this nasty problem for me ^^ thank you =)