 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
ogpayne Cheater
Reputation: 0
Joined: 08 Dec 2014 Posts: 45
|
Posted: Mon Aug 24, 2015 5:52 pm Post subject: Check this code |
|
|
hey everyone, so I've been learning asm more lately and I am trying to find how to make this work.. what I have is a code that I was just playing around with to see what I can do.. I found the Z axis and I am trying to make something that adds to that value, basically like a flying hack. what I have now DOES add to that hack but it is very buggy, it bounces way up in the air, then comes back down and bounces back up, (kind of like the super jump on halo lol) it's actually fun but; I want it to constantly increase my Z axis, so for example I want it to add the value of 10 to my Z every second so I can fly, and toggle it off when I want to come back down.. please help, thanks!!
| Description: |
|
| Filesize: |
423.19 KB |
| Viewed: |
2619 Time(s) |

|
|
|
| Back to top |
|
 |
deama1234 Master Cheater
Reputation: 3
Joined: 20 Dec 2014 Posts: 328
|
Posted: Mon Aug 24, 2015 6:35 pm Post subject: |
|
|
Heh; I'm guessing you used "find out what writes" right? Well, that code is executed when you press space; that's why it doesn't just keep adding, and eventually goes down.
Find something that accesses the code constantly, then you can inject your addition to it.
As for the hotkey thing...
well, one thing at a time; but here, a template:
| Code: |
pushad
pushfd
push 'W'
call GetAsyncKeyState
shr ax,#15
cmp ax,01
jne notPres
//Pressed:
//stuff to do when you press and hold your key
notPres:
popfd
popad |
|
|
| Back to top |
|
 |
ogpayne Cheater
Reputation: 0
Joined: 08 Dec 2014 Posts: 45
|
Posted: Mon Aug 24, 2015 6:44 pm Post subject: |
|
|
| deama1234 wrote: | Heh; I'm guessing you used "find out what writes" right? Well, that code is executed when you press space; that's why it doesn't just keep adding, and eventually goes down.
Find something that accesses the code constantly, then you can inject your addition to it.
As for the hotkey thing...
well, one thing at a time. |
I did actually do found out what writes haha! But, this code is actually always being accessed, it isn't only accessed when I press the spacebar. When I do find out what write to this address the value just increases constantly, not only when I press the spacebar.
|
|
| Back to top |
|
 |
deama1234 Master Cheater
Reputation: 3
Joined: 20 Dec 2014 Posts: 328
|
Posted: Mon Aug 24, 2015 6:53 pm Post subject: |
|
|
| ogpayne wrote: | | deama1234 wrote: | Heh; I'm guessing you used "find out what writes" right? Well, that code is executed when you press space; that's why it doesn't just keep adding, and eventually goes down.
Find something that accesses the code constantly, then you can inject your addition to it.
As for the hotkey thing...
well, one thing at a time. |
I did actually do found out what writes haha! But, this code is actually always being accessed, it isn't only accessed when I press the spacebar. When I do find out what write to this address the value just increases constantly, not only when I press the spacebar. |
Edit: nvm; what game is that? Oh, lol, I just read it.
EDIT2: Ah, I see the problem. There's a gravitational force acting, so it pulls you down, then the "add" adds in your height, then the gravity pulls you down again, etc...
Try disabling the pull effect I would say.
Edit3: If your having trouble with finding it; it's very close to the Z axis address "[rbx+20]". Once you add it to your table you can then find what accesses it; there's like 4 "addss" instructions, nop the 2 first and it should disable gravity.
|
|
| Back to top |
|
 |
|
|
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
|
|