 |
Cheat Engine The Official Site of Cheat Engine
|
| View previous topic :: View next topic |
| Author |
Message |
Kaixa How do I cheat?
Reputation: 0
Joined: 08 Jan 2014 Posts: 2
|
Posted: Wed Jan 08, 2014 5:07 pm Post subject: Changing "double" value, online game |
|
|
On a certain online game, related to the anime SAO, has XP you can earn.
Being a total newbie at hacking i have managed to find the address of the EXP, and yes, i'm certain, however, as i attempt to change it, the value either stays the same or turns into another value. The value is a "double" type, and another value for some reason changes with it and is of the "byte" type.
Some please help??
|
|
| Back to top |
|
 |
maveric2170 How do I cheat?
Reputation: 0
Joined: 08 Jan 2014 Posts: 1
|
Posted: Wed Jan 08, 2014 8:23 pm Post subject: Re: Changing "double" value, online game |
|
|
| Kaixa wrote: | On a certain online game, related to the anime SAO, has XP you can earn.
Being a total newbie at hacking i have managed to find the address of the EXP, and yes, i'm certain, however, as i attempt to change it, the value either stays the same or turns into another value. The value is a "double" type, and another value for some reason changes with it and is of the "byte" type.
Some please help??  |
LOL.... I found the same code, but couldn't change it. btw... be more specific cause this SAO game is within roblox. People might think it as a free game that was downloaded anywhere.
|
|
| Back to top |
|
 |
Kaixa How do I cheat?
Reputation: 0
Joined: 08 Jan 2014 Posts: 2
|
Posted: Thu Jan 09, 2014 2:08 pm Post subject: |
|
|
| Well what can we do then? If we find code and we cant chage it, accessing what writes to this memory will shut the game down -__-
|
|
| Back to top |
|
 |
Barrin Newbie cheater
Reputation: 0
Joined: 08 Sep 2008 Posts: 15 Location: The Netherlands
|
Posted: Sat Jan 11, 2014 5:46 pm Post subject: |
|
|
Your seriously trying to edit EXP in an ONLINE game?
Most value's in online games are server sided thus unchangable.
If you have luck the programmers of the game messed some things up and you can edit walk speed, delay of skills, attack speed but as said only if you are lucky and the values are not server sided.
To do this learn basic debugging in Cheat Engine and Auto Assembly.
For example this is a code for an online game that removes the game writes to the game speed value (if the address was the real one since I don't want to see this game ruined) and changes is to 0 (which is the fastest for the game). Word of warning I'm a total beginner in auto assembly and this code is very ugly by applying a nop while it could be done in a nicer way.
| Code: |
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(originalspeed, 9)
registersymbol(originalspeed)
aobscan(gamespeed,94 65 A3 2? 23 7F 1A 12 16)
registersymbol(gamespeed)
originalspeed:
readmem(gamespeed, 9)
gamespeed+2:
db 90 90 90 90 90
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
gamespeed:
readmem(originalspeed, 9)
unregistersymbol(originalspeed)
unregistersymbol(gamespeed)
dealloc(originalspeed)
|
Secondly I wouldn't expect much more help than this since discussing online game (hacks) is not allowed forum.cheatengine.org/faq.php#0. (and I'm not allowed too post links yet )
If you ever use this template for AA just add it first with only enable/disable and the rest empty else CE will not allow you to use it because the syntax check cannot read all of the memory.
|
|
| 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
|
|