Posted: Fri Aug 06, 2010 3:17 pm Post subject: Batch file cheating with cheat engine
Hey I was just wondering is it possible to use cheat engine to cheat at a batch/cmd game? I have tried searching for the exact value but ce does not find it. To get what I mean save the text below to test.bat and try to change the value to 500 in ce. Also every time you hit enter the value drops by 5.
Code:
@echo off
:start
set val1=100
:continue
cls
echo Current value:%val1%
echo Try to change current value to 500 to continue.
pause
if %val1%==500 GOTO win
set /a val1=%val1%-5
goto continue
:win
echo You successfuly changed it!
echo Press enter to exit.
pause >nul
exit
I have made an instant win cheat for it, even without CE.
Code:
@echo off
:start
set val1=100
:continue
cls
echo Current value:%val1%
echo Try to change current value to 500 to continue.
pause
if %val1%==500 GOTO win
set /a val1=%val1%+400
goto continue
:win
echo You successfuly changed it!
echo Press enter to exit.
pause >nul
exit
Seriously I don't know why would I ever use CE for a BAT file, never tried. _________________
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum