A downloadable asset pack

Download NowName your own price

Jump to a label when the timer runs out for situations where the urgency of a time-sensitive decision is desired.

You can now stop using that outdated Cookbook example, PLEASE?

MIT License, or in other words, do whatever you want with it. If you are kind enough to provide credit then linking back to this page will be more than enough.

How to install

  1. Download the file and put it in your Ren'Py /game folder.
  2. Or you can just watch the first 5 minutes of the video.

How to use

  • You already know how to use the normal choice menu.
menu:
    # choices
  • To make a 10-second timer, just add this extra code in brackets (). 
menu(time=10.0, timeout="too_slow"):
    # choices
  • Where "too_slow" is the name of your label to jump to after the time has run out.
  • The original choice menu will still work.
StatusReleased
CategoryAssets
Rating
Rated 5.0 out of 5 stars
(9 total ratings)
AuthorCuteShadow
GenreVisual Novel
TagsGraphical User Interface (GUI), Ren'Py, Tutorial, User Interface (UI)

Download

Download NowName your own price

Click download now to get access to the following files:

timed_choice.rpy 6.4 kB

Comments

Log in with itch.io to leave a comment.


Thank you! 

We have this set up in our upcoming project, and we've made sure to add your name to our game credits in the 'About' screen. 

Now to finish to project...

(+1)

Thank you so much for this tool! I have a question, which is probably super simple but how can I get the timer bar to go from right to left when counting down as opposed to how it currently goes to the center?

(+1)

At the bottom of the file in the timed_choice_visual screen, you'll find the part of the bar that fills up.

If you change the xalign to 0 instead of 0.5 the bar will anchor to the left to shrink in that direction.

add Solid(gui.timed_choice_timer_bar_fill_color):
    at transform:
        xalign 0.0
        xzoom 1.0
        linear adjusted_time xzoom 0.0
(+1)

Oh my gosh, I knew it would be that simple -.-" . Thank you so much!!

(+1)

Thanks for the tool! I've watched the video, and I love how you clearly explain in-depth about the extra customization one could do with the tool. I also appreciate the example you did with the clock.

(+1)

Hi! We used this for our jam project! Very useful! Thank you so much! https://azurextwilight.itch.io/quincentra-english

(+1)

Looks so cool! Thank you!

(+1)

interesting