Just gotta keep repeating the process til you get down to something more managable like 1000 results. From there you can do a manual binary search of all 1000 results by selecting your first result, shift selecting your middle-most result (or at least roughly middle most), pressing space to enable a lock on all of those first 500 or so results, do something in the game that you could test if it's actually locked or not, in this case jumping. If there's no difference, delete all of those results you toggled. If there is a difference, delete the 2nd half of results that you didn't toggle. Then you can repeat the process - highlight half of the results, press space, test it, delete the irrelevant half, etc. Should, worst case scenario, find your address in about 10 cycles of toggles.
fun fact if you use the pause method plus 0 and 1 to check for death and restart you might get a lot but if you can spot the two specifically for it you can lock them allowing you to not die nor restart albiet I didn't figure out its code so you'd have to do that 😀
I have the coordinates of the x y z axis how to create the air jump in game via cheat engine I tried your way but it gives me an error when I change the z axis because when I jump only the z axis changes
To Dear Tekkit Shawn , is this method can apply to other game that have the limit of do something certain number of time and make it no limitation so you can use as many time as you want to in game ? thanks
I know this video is super old but if anyone comes across this that understands assembly more than i do, please help. so im play Sly 3 on an emulator. I found the flag that tells the game whether i'm jumping or not. The issue is, it appears to be a shared flag spot for multiple actions I.E 0 - standing, 1 - Walking, 2 - Running, 3 - Jumping, 23 - Attacking etc. Freezing this value at 0 allows me to jump as high as i want but i cant move thereafter. im new to assembly but i have a general knowledge of coding but that only gets me so close. (I think) I essentially need to write an IF statement. IF == 3 Do Nothing (as in skip line or set to 1 to allow movement?) . ELSE allow function to run normally. is this possible? also, not sure if this means anyhing, but the value itself changes when the character state changes, there arent any (Je) OPcodes for me at least near above
there is multiple ways but do you still need help? because if you do that is called a shared opcode you can see tutorials because i don't play that game to test my theories
@@hodayfa000h I haven't looked into this game specifically in about since I made the post but I think I have the table saved. I'd appreciate a little help though for future reference, it could help for in another game
@@moneyboy503 (this works on all games) shared opcodes are very common in games like really common to learn it you need to learn the basics of cheat engine but first you need to learn what they are shared opcodes are codes or instructions that control more than one thing you can use an auto assembler script to solve it the main commands are jne(jump if not equal){jumps if the thing isn't equal and cmp(compare or compare to) they are not the only ones but they are the easiest to use you need to learn like the first 6 steps of the cheat engine tutorial it isn't necessary but it helps a lot anyway all you have to do is look up for a tutorial because i can't fit everything in one comment and without something you can see so yes it is complicated but it is a really important thing and another important thing is learning assembly it is really easy if you just want to hack games
@@moneyboy503 i can tell you a lot of things but really you might just not understand and it won't be useful if you don't know other things i am sorry i am just not good at explaining you can ignore what i said not reply if you want
@@hodayfa000h you're fine, my degree is in computer science. I went in for coding, I'll get the basics but I won't have you type it all, at the very least could you point me in the right direction? You said shared opcodes?
One year later: you can pause the process Cheat Engine attached to by going to "Advanced options" and clicking the stop/pause icon. You may want to assign hotkeys so to speed this process up.
Thanks for the great video. But i am trying to hack games in android. Please i found no helpful videos in UA-cam. Can you please give tutorials for Android game hacks using game guardian. Thanks. 😍😍
good explanation, you are great
scanning 1 or 0 takes humongous amount of time in big sized games
seems simple enough for a simple ghame but such a pain in the ass for newer modern game with a million things to scan for 0 alone.
Just gotta keep repeating the process til you get down to something more managable like 1000 results. From there you can do a manual binary search of all 1000 results by selecting your first result, shift selecting your middle-most result (or at least roughly middle most), pressing space to enable a lock on all of those first 500 or so results, do something in the game that you could test if it's actually locked or not, in this case jumping.
If there's no difference, delete all of those results you toggled.
If there is a difference, delete the 2nd half of results that you didn't toggle.
Then you can repeat the process - highlight half of the results, press space, test it, delete the irrelevant half, etc.
Should, worst case scenario, find your address in about 10 cycles of toggles.
i wonder what happen if you kept that mov subset 7C to 1 the whole time
fun fact if you use the pause method plus 0 and 1 to check for death and restart you might get a lot but if you can spot the two specifically for it you can lock them allowing you to not die nor restart albiet I didn't figure out its code so you'd have to do that 😀
I have the coordinates of the x y z axis how to create the air jump in game via cheat engine I tried your way but it gives me an error when I change the z axis because when I jump only the z axis changes
I succeeded in Human Fall Flat , thank u ! I'll try to do more
can use in online,but you must the host
[ENABLE]
aobscan(inf_jmp,88 46 5C 8B 47 1C)
alloc(newmem,$100)
label(code)
label(return)
newmem:
code:
//mov [esi+5C],al
mov [esi+5C],#1
mov eax,[edi+1C]
jmp return
inf_jmp:
jmp newmem
nop
return:
registersymbol(inf_jmp)
[DISABLE]
inf_jmp:
db 88 46 5C 8B 47 1C
unregistersymbol(inf_jmp)
dealloc(newmem)
do you have an Outlook email,i can send you the CT
sorry bro , china is banned discord , but i sent the email to you
what about now,i sent again for another email
the audio quality is so crisp and clear. like broadcast radio type
how do you do it for games you can not jump?
To Dear Tekkit Shawn , is this method can apply to other game that have the limit of do something certain number of time and make it no limitation so you can use as many time as you want to in game ? thanks
can u do tutorial on fly in jump king please?
what: (please target another process) why this error
Thank you so much!!!
I know this video is super old but if anyone comes across this that understands assembly more than i do, please help. so im play Sly 3 on an emulator. I found the flag that tells the game whether i'm jumping or not. The issue is, it appears to be a shared flag spot for multiple actions I.E 0 - standing, 1 - Walking, 2 - Running, 3 - Jumping, 23 - Attacking etc. Freezing this value at 0 allows me to jump as high as i want but i cant move thereafter. im new to assembly but i have a general knowledge of coding but that only gets me so close. (I think) I essentially need to write an IF statement. IF == 3 Do Nothing (as in skip line or set to 1 to allow movement?) . ELSE allow function to run normally. is this possible? also, not sure if this means anyhing, but the value itself changes when the character state changes, there arent any (Je) OPcodes for me at least near above
there is multiple ways but do you still need help? because if you do that is called a shared opcode you can see tutorials because i don't play that game to test my theories
@@hodayfa000h I haven't looked into this game specifically in about since I made the post but I think I have the table saved. I'd appreciate a little help though for future reference, it could help for in another game
@@moneyboy503 (this works on all games)
shared opcodes are very common in games like really common to learn it you need to learn the basics of cheat engine but first you need to learn what they are
shared opcodes are codes or instructions that control more than one thing you can use an auto assembler script to solve it the main commands are jne(jump if not equal){jumps if the thing isn't equal
and cmp(compare or compare to)
they are not the only ones but they are the easiest to use
you need to learn
like the first 6 steps of the cheat engine tutorial it isn't necessary but it helps a lot
anyway all you have to do is look up for a tutorial because i can't fit everything in one comment and without something you can see so yes it is complicated but it is a really important thing and another important thing is learning assembly it is really easy if you just want to hack games
@@moneyboy503 i can tell you a lot of things but really you might just not understand and it won't be useful if you don't know other things i am sorry i am just not good at explaining you can ignore what i said
not reply if you want
@@hodayfa000h you're fine, my degree is in computer science. I went in for coding, I'll get the basics but I won't have you type it all, at the very least could you point me in the right direction? You said shared opcodes?
what about unreal engine?
how about in games where you cannot pause?
I bound my Increased, Decreased, and Unchanged Value search hotkeys so I could hit that while the game would be in motion for games like that
@@moneyboy503 and how to do that?
One year later: you can pause the process Cheat Engine attached to by going to "Advanced options" and clicking the stop/pause icon. You may want to assign hotkeys so to speed this process up.
it work with online game?
Doesn't really help with 64 bit games
This is useless. I tried exactly the same thing, and it doesn't work.
Guys can u help me with this for pixel worlds
what if the game is online and cant be paused?
tsk tsk tsk
Use 0.02 or .05 speed And accept the box pause the gaame while scanning
@@PlayboyPrime lmao
@@tekkitshawn6782 tsk tsk? tell me what to do when it cant be paused! :D
Jump and pause the game the full game codes will stop changing untill paused
this is only for basic games not for god of war like games
Well yes, but the method on more complex games is pretty similar
@@HahaYes i cant find god of war 1 demo fly hack i tried it
why it dosent work in online?
bcuz ur not the host if ur the host u take all the game's data so u can manipulate stuff in CE
Thanks for the great video. But i am trying to hack games in android. Please i found no helpful videos in UA-cam. Can you please give tutorials for Android game hacks using game guardian. Thanks. 😍😍
Sadly this is wortless, did the same as the vid says and nothing.
Very good video
Why are people trying to hack online games?
and what's wrong? as long as it's not affecting anyone's game, I don't see any reason to worry.
helpme
👏
its impossible
no working