0 votes
by (410 points)

So the only macro I can find for this was made for Twine 1 and returns errors on Twine 2. Is there an equivalent to the timed insert macro found here for SugarCube 2.21.0?

1 Answer

0 votes
by (63.1k points)
selected by
 
Best answer

There is a <<timed>> macro and a <<replace>> macro in sugarcube. There's also a sugarcube port of that very macro set available on its website in the downloads section: http://www.motoslave.net/sugarcube/2/

Anyway, here's how a timed replace might look. This is using only the basic features of SugarCube, not the macro set from downloads

@@#replace-me; Hello! @@

<<timed 3s>>
    <<replace '#replace-me'>> Goodbye! <</replace>>
<</timed>>

You can read about these macros in the documentation on SugarCube's website. 

...