- May 24, 2020
- 47
- 39
Bug in [v0.37B] on the nerds chess bet scene's high INT variant there is an [Error: cannot find a closing tag for macro <<silently>>] and time does not progress.
Also in [v0.37B] if you choose give up in the intro there is a missing image [img/you/sissy2.jpg].
Now that i have your ear i have a request/recommendation: Please do something about the green descriptions! they cause a lot of unnecessary and repetitive scrolling, simply moving them below the choices should fix the issue and improve the game's flow.
Looking at it in twine there are 24 instances of [div class="seagreen"] and cutting/pasting 24 times shouldn't take more than a few minutes, OR you could go further with this and add a variable for each one that gets set to 1 if its 0 so the players will only see them on their first visit to the page.
something like this:
<<if $hide1 is 0>>
<center>
<div class="seagreen">
...
</div>
</center>
<</if>>
<<if $hide1 is 0>>
<<set $hide1 to 1>>
<</if>>
don't forget to set vars to 0 on init and re add <center> before [[go to x]]
Another thing i want to ask is to please pay attention to the order of the list of [[go to]] choices, if it stays the same in all passages it will make the experience more smooth specially when you're constantly clicking on them.
Thank you for listening to my two cents and good luck.
Also in [v0.37B] if you choose give up in the intro there is a missing image [img/you/sissy2.jpg].
Now that i have your ear i have a request/recommendation: Please do something about the green descriptions! they cause a lot of unnecessary and repetitive scrolling, simply moving them below the choices should fix the issue and improve the game's flow.
Looking at it in twine there are 24 instances of [div class="seagreen"] and cutting/pasting 24 times shouldn't take more than a few minutes, OR you could go further with this and add a variable for each one that gets set to 1 if its 0 so the players will only see them on their first visit to the page.
something like this:
<<if $hide1 is 0>>
<center>
<div class="seagreen">
...
</div>
</center>
<</if>>
<<if $hide1 is 0>>
<<set $hide1 to 1>>
<</if>>
don't forget to set vars to 0 on init and re add <center> before [[go to x]]
Another thing i want to ask is to please pay attention to the order of the list of [[go to]] choices, if it stays the same in all passages it will make the experience more smooth specially when you're constantly clicking on them.
Thank you for listening to my two cents and good luck.