0 votes
by (750 points)

Think like a clicker game. the idea is you have a button where when you click it, it changes a variable to go up by one.

Example.

<<if $No is 1>>
<<link "Yes">>
<<set $No to 0>>
<</link>>
<</if>> 

So when you click no, it sets $No to 0 and hides the link.

1 Answer

0 votes
by (23.6k points)

What you are looking for is the <<linkreplace>> macro.

...