View previous topic :: View next topic |
Author |
Message |
Jesper Grandmaster Cheater Supreme
Reputation: 9
Joined: 21 Feb 2007 Posts: 1156
|
Posted: Tue May 25, 2010 1:31 pm Post subject: |
|
|
What's the game made in?
|
|
Back to top |
|
 |
Skull Kid Expert Cheater
Reputation: 2
Joined: 03 Jul 2009 Posts: 146
|
Posted: Tue May 25, 2010 1:37 pm Post subject: |
|
|
SwallowIt wrote: | What's the game made in? |
I think it's C++, but how do I check?
|
|
Back to top |
|
 |
Jesper Grandmaster Cheater Supreme
Reputation: 9
Joined: 21 Feb 2007 Posts: 1156
|
Posted: Tue May 25, 2010 1:38 pm Post subject: |
|
|
Sorry about being unspecific in my question, is the game in the browser or not?
|
|
Back to top |
|
 |
Skull Kid Expert Cheater
Reputation: 2
Joined: 03 Jul 2009 Posts: 146
|
Posted: Tue May 25, 2010 1:41 pm Post subject: |
|
|
SwallowIt wrote: | Sorry about being unspecific in my question, is the game in the browser or not? |
It's made as a PC (offline) game.
|
|
Back to top |
|
 |
Jesper Grandmaster Cheater Supreme
Reputation: 9
Joined: 21 Feb 2007 Posts: 1156
|
Posted: Tue May 25, 2010 1:46 pm Post subject: |
|
|
PM Me your teamviewer/msn details and I can help you out.
|
|
Back to top |
|
 |
hcavolsdsadgadsg I'm a spammer
Reputation: 26
Joined: 11 Jun 2007 Posts: 5801
|
Posted: Tue May 25, 2010 4:18 pm Post subject: |
|
|
saken wrote: | SwallowIt wrote: | You'll be better off just making a separate trainer for invincibility. |
Ok. I guess I have to admit it, I'm a complete noob in programming. |
just use cheat engine then.
|
|
Back to top |
|
 |
Skull Kid Expert Cheater
Reputation: 2
Joined: 03 Jul 2009 Posts: 146
|
Posted: Fri May 28, 2010 3:40 pm Post subject: Could this be it? |
|
|
Could this be the keys that lead to these commands in the trainer?
Description: |
|
Filesize: |
259.33 KB |
Viewed: |
12271 Time(s) |

|
_________________
Regards,
Skull Kid
Originally known as "saken". |
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8585 Location: 127.0.0.1
|
Posted: Sat Jun 12, 2010 7:23 pm Post subject: |
|
|
From the look of the picture, yes. If you want to extend what it does, go down to the last key check and add a jump to a cave. You will need to do quiet a bit of work to add your own check and handler if you are looking to add an option to the trainer.
You are better off writing your own trainer, or create a table in CE and convert it to a trainer using CE's trainer maker.
_________________
- Retired. |
|
Back to top |
|
 |
Skull Kid Expert Cheater
Reputation: 2
Joined: 03 Jul 2009 Posts: 146
|
|
Back to top |
|
 |
Uzeil Moderator
Reputation: 6
Joined: 21 Oct 2006 Posts: 2411
|
Posted: Sun Jun 13, 2010 5:15 am Post subject: |
|
|
Actually, if you want to add another one without bothering to add the text(though that may not be too hard either judging from this compiler), you may be able to add another into the program quite easily.
Sorry I haven't read the rest of the thread, just the last three posts but:
The method you're looking at does the following:
if GetAsyncKeyState(key: '1') returns that it has been pressed, call WriteProcessMemory([4034FC], <address to write to>, <where you've located what information to write>, <how many bytes of information to write>, [4AC4F7])
Then copy-paste for key's '2', '3', and '4'.
You could then hook the code after the next 'CALL <JMP.&USER32.GerAsyncKeyState>' to your own assembler code, in which you can completely copy-paste one of their segments (like address 4010DA to address 401119) into your own section of memory("code cave").
Then change out the "push 32" to be "push <your key>" (like 5 would be 35. www.asciitable.com),
and change the push [4031A9] to a push <whatever address you want to modify>
then change "push 04031Ad" to a push whereveryouallocatedsomebytes, (note that value markers [] aren't necessary since you would be hardcoding the address)
then change "push [4031B3]" to push <number of bytes you want to write> (again note that value markers [] aren't required since you hardcoded the address)
If you want to also have the text, you'll have to find another section where the text is printed and then it'd be doable.
On the other hand, if you want to write a trainer yourself to mimic this one, it wouldn't be hard at all. That pseudo-code I wrote earlier is basically the entire trainer, just copy-pasted 4 times for the 4 different keys, and with a GUI, full with a button that probably does ShellExecute or OpenProcess, and then stores the application's handle in a variable, which is then passed as the first parameter in WriteProcessMemory.
Also, if you want to make a trainer with CE's trainer maker, all you have to do to keep these ones is look on the right side there and copy-paste the "Address", "Number of bytes to write", then go to the actual address located at "Buffer = <this number>", and copy the number of bytes mentioned in "Number of bytes to write" as what you'll be writing to the address in the CE trainer.
I personally like the first set of instructions the most, as it honestly wouldn't take more than 5 minutes of your time, whereas all the others would take at least 15-20.
_________________
|
|
Back to top |
|
 |
|