*label input_name
What nickname would you prefer?
*input_text name
*set fighter_rep +1
*comment check capitalization
*label ask0
Your nickname is $!{name}, is that right?
\*choice
#Yes.
\*set name "$!{name}"
\*if {name} = Payback
\*goto AlternateStoryLine1
\*else
\*goto aftermath
The above is my code.
I want to make an easter egg feature depending on what nickname the player chooses.
Only the name “Payback” would trigger it.
However the program is trying to compare “name” with a variable Payback, instead of comparing it with the word itself.
The error is non-existant variable.
Thanks in advance for your help. I am probably missing something easy.