View previous topic :: View next topic |
Author |
Message |
sreeragh2009 Cheater
Reputation: 0
Joined: 21 Oct 2014 Posts: 33 Location: UNKNOWN
|
Posted: Sat Jan 24, 2015 1:24 am Post subject: How to implement |
|
|
Say i made a trainer. It injects a code into the game. Selection of cheats is by registersymbol technique. Now nopping codes in the main exe is easy, but how to make the newmem section in the exe and how to put selection directly by asm coding ? Is it possible. If yes please tell me. I think newmem can be made at the end of exe and a jump statement to it and return back to the address where it jumped. Still tell me. And also how to make shortkeys directly to asm coding.
_________________
PROFESSIONAL "LEARNER" |
|
Back to top |
|
 |
Hatschi Master Cheater
Reputation: 2
Joined: 28 Jan 2010 Posts: 327
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
|
Back to top |
|
 |
sreeragh2009 Cheater
Reputation: 0
Joined: 21 Oct 2014 Posts: 33 Location: UNKNOWN
|
Posted: Sat Jan 24, 2015 1:09 pm Post subject: Actually |
|
|
Actually you didnt understand what i said. To be more clear ill post better with a example. Thanks for replying anyways. Lets take an example a code in a software XXXX(something just for example)
Code: | XXXX+4B234 mov [eax],ebx |
This is just an example code and IS NOT an actual software code. Lets say this code is the spread of weapon in-game. Lets say if we NOP the code it removes all spread. Now CE injects and NOPs that code. To make it permanent i can open up XXXX.exe in Olly or IDA and go to same address "XXXX+4B234" then change it to NOP and save it permanently. So i dont need to inject anything anymore and the cheat is permanent. And for the shortcuts part.
Lets say we have a main script with god mode, unlimited ammo, no spread and super speed.And lets say I have 4 globalalloc scripts which is used to toggle these cheats. The main code checks whether the toggle scripts are active using cmp... Example
Code: | cmp [toggle_godmode],1
jne blahblah1
//godmode script
//----------------
//----------------
blahblah1:
cmp [toggle_uammo],1
jne blahblah2
//uammo script
//----------------
//----------------
blahblah2:
..........and so on |
so question is when i inject a code a newmem region is allocated and the originalcode is change to jmp to newmem. So how do i create a newmem with IDA (maybe create a section at the end of XXXX.exe using IDA, but is it possible ? ). Next question is that with the cheat engine i can manually toggle the scripts using hotkeys or just my mouse, but if i succeed it in implementing the code in the main exe then how do i toggle those things. Hope you understand what im saying.
EDIT : Im not talking about C++ codes ; i dont code in C++, not yet.
EDIT2 : PLEASE SOMEBODY REPLY
_________________
PROFESSIONAL "LEARNER" |
|
Back to top |
|
 |
|