| View previous topic :: View next topic |
| Author |
Message |
X-MEN-2 How do I cheat?
Reputation: 0
Joined: 25 May 2007 Posts: 1
|
Posted: Wed May 30, 2007 1:51 am Post subject: To Dark Byte or some one fully Assembly Know |
|
|
Hi Guys
im new user in this forum and i love it!
because very good!im read Dark Bytes post in this topic:
| Code: | | http://forum.cheatengine.org/viewtopic.php?t=4869 |
and im think this scripts very useful and i want to practice this scripts on the windows pinball because its very easy for practice.
i want to create my own TRAINER Form this scripts.
but how i can use this scripts in the trainer?
im use code cave in my scripts but trainer isnt work?how i can fix this?
can some one write true scripts for me please?
i know im not gone use [alloc] in my scripts but when i delete line alloc game is going to crash!!!
PINBALL.exe+2FE=this is my cave
| Code: |
[ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
registersymbol(pointertoballs) //add "pointertoballs" to the userdefined symbollist
alloc(pointertoballs,4)
label(returnhere)
label(originalcode)
label(exit)
Pinball.exe+175b7:
jmp PINBALL.exe+2FE
nop
returnhere:
PINBALL.exe+2FE: //this is allocated memory, you have read,write,execute access
//place your code here
mov [pointertoballs],esi //store the base address to pointertoballs
originalcode:
mov [esi+00000146],eax
exit:
jmp returnhere
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
unregistersymbol(pointertoballs)
dealloc(pointertoballs)
Pinball.exe+175b7:
mov [esi+00000146],eax |
thanks!
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Wed May 30, 2007 11:44 am Post subject: Re: To Dark Byte or some one fully Assembly Know |
|
|
| xxx_xxx is that you......
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25808 Location: The netherlands
|
Posted: Wed May 30, 2007 11:47 am Post subject: |
|
|
let me guess, he's been copy/pasting his question with script to you as well every few hours hoping you give him a fixed script...
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Wed May 30, 2007 11:52 am Post subject: |
|
|
| No, but he has been the only one asking about making that script into a script for a trainer.
|
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Wed May 30, 2007 1:40 pm Post subject: |
|
|
yes is me.
but just i want to made my own trainer.but i cant.
just i want use this scripts in the trainer.but i cant.
just i want this.
i dont want anything else.
thank you Labyrnth to help me how to find and use code cave in the scripts
and thank you Dark Byte for Cheat Engine.
im going from this forum and im never came back here and you will never see me in this forum.
Good Bye my friends.
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Wed May 30, 2007 1:52 pm Post subject: |
|
|
Why hide mate......?
You can make one just dont use alloc at all in the script.
Also it is not a good idea to PM the crap out of the admin .
Man that is sad... I just could not help him understand how to write a script for a trainer.
|
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Wed May 30, 2007 3:14 pm Post subject: |
|
|
| but when i delete alloc from my scripts game is crash out?
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25808 Location: The netherlands
|
Posted: Wed May 30, 2007 3:16 pm Post subject: |
|
|
if you just remove the alloc it won't even get injected
also, even with the alloc like that, it may not work since
PINBALL.exe+2FE might not be executable.
anyhow, find a region to replace the label, and use fullaccess to make sure it's writable and accessible
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Wed May 30, 2007 3:40 pm Post subject: |
|
|
this scripts for windows pinball
i use this scripts but windows pinball is crash out?
is this scripts true:
| Code: | [ENABLE]
registersymbol(pointertoballs)
fullaccess(PINBALL.exe+4A175,4)
label(pointertoballs)
label(returnhere)
label(originalcode)
label(exit)
pointertoballs:
Pinball.exe+175b7:
jmp PINBALL.exe+2FE
nop
returnhere:
PINBALL.exe+2FE: //this is allocated memory, you have read,write,execute access
//place your code here
mov [pointertoballs],esi
originalcode:
mov [esi+00000146],eax
exit:
jmp returnhere
[DISABLE]
unregistersymbol(pointertoballs)
Pinball.exe+175b7:
mov [esi+00000146],eax |
|
|
| Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25808 Location: The netherlands
|
Posted: Wed May 30, 2007 3:58 pm Post subject: |
|
|
I take it that PINBALL.exe+4A175 is the address where you want to store pointertoballs?
then try it like this:
| Code: |
[ENABLE]
registersymbol(pointertoballs)
fullaccess(PINBALL.exe+4A175,4)
label(pointertoballs)
label(returnhere)
label(originalcode)
label(exit)
PINBALL.exe+4A175:
pointertoballs:
dd 0 ;initialize it for fun
Pinball.exe+175b7:
jmp PINBALL.exe+2FE
nop
returnhere:
PINBALL.exe+2FE: //this is allocated memory, you have read,write,execute access
//place your code here
mov [pointertoballs],esi
originalcode:
mov [esi+00000146],eax
exit:
jmp returnhere
[DISABLE]
unregistersymbol(pointertoballs)
Pinball.exe+175b7:
mov [esi+00000146],eax
|
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Thu May 31, 2007 1:19 am Post subject: |
|
|
thank you very much Dark Byte!!!!
this method is working!!!!!
now i can make my own trainer!!!
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Thu May 31, 2007 10:58 am Post subject: |
|
|
xxx_xxx
Hey does this mean your not leaving now ?
hehehehe..
|
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Thu May 31, 2007 3:20 pm Post subject: |
|
|
no
im do not go any where.
because i love Cheat Engine!!!!!!!
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Fri Jun 01, 2007 12:30 pm Post subject: |
|
|
Heh,
So your understanding now alloc is great for AA scripts and for trainers you got to make your own so it works.
Wooot !
This is the one that didnt get away... Thx to DB.
|
|
| Back to top |
|
 |
|