Cheat Engine Forum Index Cheat Engine
The Official Site of Cheat Engine
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


God Mode
Goto page Previous  1, 2
 
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Gamehacking
View previous topic :: View next topic  
Author Message
Rydian
Grandmaster Cheater Supreme
Reputation: 31

Joined: 17 Sep 2012
Posts: 1358

PostPosted: Sun Sep 13, 2015 6:26 am    Post subject: Reply with quote

Once you find what writes the address, you can save that info for next time because unless you restart the whole game itself (closing and starting it again), that code should stay the same.

And finding that code is literally as easy as right-clicking the address, clicking find what writes, and then waiting to get hit once.

So please, please actually read and check out the first links.

If you want to learn how to do something, you're going to actually have to watch more than 10 seconds of a video or read more than the first sentence of a post.

_________________
Back to top
View user's profile Send private message
kokkinogenis
Advanced Cheater
Reputation: 0

Joined: 10 Sep 2015
Posts: 82
Location: Greece

PostPosted: Mon Sep 14, 2015 6:48 am    Post subject: Reply with quote

i saw all the video of "Game hacking Part 2:code edits, injection and AOBS" I make almost everythink and my script, didn't work. The only think that i didn't do, is in the 16:45 minute. He change something that i don't understand. He says just do it, but i am on diffrent game Smile

sorry for bad english
Back to top
View user's profile Send private message
Snow1337
Catastrophic Cheatah
Reputation: 1

Joined: 12 Oct 2004
Posts: 183
Location: Your, Computer

PostPosted: Mon Sep 14, 2015 6:59 am    Post subject: Reply with quote

Yes like Rydian said, right click it and Find What Writes, try tracing the data structure of the player so when you edit you dont give enemies God Mode
_________________
Back to top
View user's profile Send private message Visit poster's website
kokkinogenis
Advanced Cheater
Reputation: 0

Joined: 10 Sep 2015
Posts: 82
Location: Greece

PostPosted: Mon Sep 14, 2015 8:39 am    Post subject: Reply with quote

I wish it was so simple. I can't make it for some reason. When i finish with the script, it doesn't do nothing. Anyway guys. Thanks for the help for the god mode. I make it and that matters. Smile
Back to top
View user's profile Send private message
Rydian
Grandmaster Cheater Supreme
Reputation: 31

Joined: 17 Sep 2012
Posts: 1358

PostPosted: Mon Sep 14, 2015 8:43 am    Post subject: Reply with quote

Once you have the address that writes to your health showing up in the memory viewer window (so once you've had it show up in the write log window, really), you can work from there repeatedly without having to find the health address again.
_________________
Back to top
View user's profile Send private message
Snow1337
Catastrophic Cheatah
Reputation: 1

Joined: 12 Oct 2004
Posts: 183
Location: Your, Computer

PostPosted: Mon Sep 14, 2015 9:05 am    Post subject: Reply with quote

since its an online game, its probably server sided which means you can only manipulate it by attacking the server with a packet editor like WPE Pro
_________________
Back to top
View user's profile Send private message Visit poster's website
kokkinogenis
Advanced Cheater
Reputation: 0

Joined: 10 Sep 2015
Posts: 82
Location: Greece

PostPosted: Mon Sep 14, 2015 11:29 am    Post subject: Reply with quote

i succed it ! After i saw 12 videos about AOB i did it ! One last problem and i am done. When i am logout from the room that i play and go to another room, the game crashes. Ok that's not a big deal. My real problem is that when i begin the game the script doesn't work. The adress is the same. I checked it. Everythink is the same. What i do wrong??
Back to top
View user's profile Send private message
Rydian
Grandmaster Cheater Supreme
Reputation: 31

Joined: 17 Sep 2012
Posts: 1358

PostPosted: Mon Sep 14, 2015 11:14 pm    Post subject: Reply with quote

We can't tell unless we see your script.
_________________
Back to top
View user's profile Send private message
kokkinogenis
Advanced Cheater
Reputation: 0

Joined: 10 Sep 2015
Posts: 82
Location: Greece

PostPosted: Tue Sep 15, 2015 7:02 am    Post subject: Reply with quote

this is for unlimited health for example:

Quote:
[ENABLE]
alloc(newmem,100)
label(returnhere)
label(exit)
label(health)
registersymbol(health)
aobscan(aob1, D9 5E 30)

newmem:

db 90 90 90 D9 46 30

exit:
jmp returnhere

aob1:
health:
jmp newmem
nop
returnhere:

[DISABLE]

dealloc(newmem)
health:
db D9 5E 30
Back to top
View user's profile Send private message
Rydian
Grandmaster Cheater Supreme
Reputation: 31

Joined: 17 Sep 2012
Posts: 1358

PostPosted: Tue Sep 15, 2015 8:09 am    Post subject: Reply with quote

What does the code you're targeting look like?

Also aren't you overwriting 3 bytes with a 6 byte jump and then putting it back to 3 bytes... ?

Please follow the video tutorial, you didn't use the AOB injection template, etc.

_________________
Back to top
View user's profile Send private message
kokkinogenis
Advanced Cheater
Reputation: 0

Joined: 10 Sep 2015
Posts: 82
Location: Greece

PostPosted: Tue Sep 15, 2015 9:11 am    Post subject: Reply with quote

Rydian i saw you videos. You have great tutorials, but your videos are to large and i miss the point... This code, i found it on a video on youtube.
Back to top
View user's profile Send private message
Zanzer
I post too much
Reputation: 126

Joined: 09 Jun 2013
Posts: 3278

PostPosted: Tue Sep 15, 2015 4:32 pm    Post subject: Reply with quote

It looks like your JMP is replacing the following:
Code:
fstp dword ptr [esi+30]
fld dword ptr [esi+30]

However, your DISABLE only fixes:
Code:
fstp dword ptr [rsi+30]

You're going to crash if you try disabling your script.

In fact... it looks like you're going to crash if you enable your script too.
Because you removing a FSTP and not popping the stack.
Back to top
View user's profile Send private message
Rydian
Grandmaster Cheater Supreme
Reputation: 31

Joined: 17 Sep 2012
Posts: 1358

PostPosted: Wed Sep 16, 2015 12:32 am    Post subject: Reply with quote

http://forum.cheatengine.org/viewtopic.php?t=570083

Here's a non-video version. You can jump to the last step if you're impatient but if you don't understand it then you'll want to read the previous ones too...

_________________
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Cheat Engine Forum Index -> General Gamehacking All times are GMT - 6 Hours
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
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


Powered by phpBB © 2001, 2005 phpBB Group

CE Wiki   IRC (#CEF)   Twitter
Third party websites