Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Is it possible to do a countdown in Harlow, Twine 2?

I want to create a table with a visible countdown above it. Any help is much appreciated!

Comments

  • Same here... I'd like so much to create a countdown in Harlowe Twine 2.
    But I really don'tk know how...
  • re: Countdown
    The solution to the Time limit on story in Twine 2.0 thread may do what you want.

    re: Table
    Without more detail about when the table should appear (once, every passage, etc...), about where it should appear (passage, header, footer, etc..), or the visual design of the table it is hard to give a definitive answer.

    One possible solution is to use a HTML Table
    (set: $health to 20)(set: $magic to 15)\
    \
    <table>\
    <tr><th>Health</th><td>$health</td></tr>\
    <tr><th>Magic</th><td>$magic</td></tr>\
    </table>
    
  • @greyelf : thank you ! Yes I saw this http://twinery.org/forum/discussion/6085/time-limit-on-story-in-twine-2-0 since I post my comment. This is great. I post a new (general) question there (to know if there is any way to import the code given in this forum directly in my stories?) :-)
Sign In or Register to comment.