Search found 3 matches

by 0xrgb
Mon Sep 07, 2015 9:43 am
Forum: Ren'Py Questions and Announcements
Topic: I want to make a global timer.
Replies: 4
Views: 1061

I want to make a global timer.

Hello. I'm Korean renpy user, 0xrgb. I want to make a global timer that records "play time". It should start when renpy starts, end when renpy ends. And It must not reset "play time" when renpy restarts. (So it should use persistent values) I know how to make a simple timer(count...
by 0xrgb
Thu Sep 03, 2015 8:44 pm
Forum: Ren'Py Questions and Announcements
Topic: I have problem with moving image and DynamicDisplayable
Replies: 3
Views: 705

Solved. Thank you.

Thank you very much. I solved this problem two ways. First solution is using function "choice", and the other is using "transform" instead of "image". (1) image x: choice(persistent.endline == True): "endline1.png" pause 0.1 "endline4.png" pause 0.1 ...
by 0xrgb
Thu Sep 03, 2015 6:47 am
Forum: Ren'Py Questions and Announcements
Topic: I have problem with moving image and DynamicDisplayable
Replies: 3
Views: 705

I have problem with moving image and DynamicDisplayable

Hello, I'm Korean Renpy user, and I have problem about DynamicDisplayable I want to show image "x" when persistent.endline is true and image "x2" when it is false. x and x2 is both ATL images. endline*.png is cursor image. image x: "endline1.png" pause 0.1 "endline...