批量更改变量问题

时间:2014-06-16 13:03:35

标签: batch-file cmd

我正在批量制作视频游戏并需要一个作弊码系统。我的代码在这里:

:Cheats
cls
echo Enter a valid cheat code.
echo Type back to return home.
echo.
set /p pass="Enter:"
if %pass%==back goto Home
if %pass%==gimmedaloot set /a gld=%gld%+1000 && set %name%=Cheater
if %pass%==iamironman set /a hp=%hp%+100 && set %name%=Cheater
if %pass%==thatsitiquit goto End && set %name%=Cheater
if %pass%==duncanwashere goto Debug && set %name%=Cheater
pause
goto Home

问题是它不会将%name%变量设置为Cheater。它就像以前一样留下它。帮助

0 个答案:

没有答案