Hello!
I'm using twine2/Sugarcube 2.21.
I have probably a dumb issue once again. Using Sugarcube documentation I've created some widget.
Unfortunately, they aren't working right now. The error I get is that "macro does not exist".
Here is a how I created my widget: I've created a passage named Widgets.
Here is one of the widgets in question :
<<widget "tfCheckEvent">>
<<set $TFTotal to 0>>
<<set $TFTotal= ($brianTF + $jenTF + $fatherTF)>>
<<if $TFTotal gte 1>>
<<goto [[Diner TF Events]]>>
<</if>>
<</widget>>
And here is how I've declared it in the passage where I wanna use it.
<<tfCheckEvent>>
Thanks in advance for helping me.