I\'m coding a game in batch right now, and I\'ve not gone very far when I encountered this problem. I\'m trying to set a variable for a user answer, then use that answer for
That's because %Answer1% is not defined.
%Answer1%
set /p Answer1 = "Enter your choice: "
sets a variable named %Answer1 % (note the space!)
%Answer1 %
Remove the spaces around the =.
=