Posted: Sat Mar 18, 2023 12:52 pm Post subject: Beginner need some help
Hello
I'm new to game hacking and needed some help concerning hacking a simple game called Peggle.
It's a game where you have to destroy "bricks" with a ball pretty much like a flipper but you can't throw more than one ball at a time and currently trying to make a script to modify that.
When there where no ball in game i scanned for 0 and 1 when i shot the ball and paused.
I found the right address and found the two instructions that i need but cant find the right way to modify the assembler code.
You could set a breakpoint on mov [ecx+08],eax to see if the value held in eax is the value you want to modify. If so then you can just use an AOB injection script by bringing up the Auto Assembler window on that instruction, then selecting the AOB injection template from the menu.
Under "newmem:" you can just set eax to whatever value e.g.:
You could set a breakpoint on mov [ecx+08],eax to see if the value held in eax is the value you want to modify. If so then you can just use an AOB injection script by bringing up the Auto Assembler window on that instruction, then selecting the AOB injection template from the menu.
Under "newmem:" you can just set eax to whatever value e.g.:
Code:
...
newmem:
mov eax,(int)5
...
Thanks for your answer
I've never set a breakpoint but i tried to and it crashed the game
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