View previous topic :: View next topic |
Author |
Message |
sjl002 Master Cheater
Reputation: 0
Joined: 31 Aug 2013 Posts: 305
|
Posted: Fri Jan 08, 2016 3:51 am Post subject: Cheat engine "Tools". |
|
|
How to work with some tools such Structure spider,Dissect code, Ultimap?
And them waht for?
|
|
Back to top |
|
 |
akumakuja28 Master Cheater
Reputation: 16
Joined: 28 Jun 2015 Posts: 432
|
Posted: Fri Jan 08, 2016 12:05 pm Post subject: |
|
|
Why do you keep asking the same questions over and over and over and over and over again?
_________________
|
|
Back to top |
|
 |
STN I post too much
Reputation: 43
Joined: 09 Nov 2005 Posts: 2676
|
Posted: Fri Jan 08, 2016 3:32 pm Post subject: |
|
|
akumakuja28 wrote: | Why do you keep asking the same questions over and over and over and over and over again? |
He's a little green, don't mind him.
_________________
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Fri Jan 08, 2016 4:53 pm Post subject: Re: Cheat engine "Tools". |
|
|
sjl002 wrote: | How to work with some tools such Structure spider,Dissect code, Ultimap?
And them waht for? |
Open Cheat Engine then go to Help -> Cheat Engine Help
The help file for Cheat Engine will open where you can find a basic overview of most features.
_________________
- Retired. |
|
Back to top |
|
 |
sjl002 Master Cheater
Reputation: 0
Joined: 31 Aug 2013 Posts: 305
|
Posted: Fri Jan 08, 2016 7:45 pm Post subject: |
|
|
if the max value script and current value script Are the same. how to make script for go current value to max value?{in crysis warhead}
|
|
Back to top |
|
 |
akumakuja28 Master Cheater
Reputation: 16
Joined: 28 Jun 2015 Posts: 432
|
Posted: Fri Jan 08, 2016 8:20 pm Post subject: |
|
|
sjl002 wrote: | if the max value script and current value script Are the same. how to make script for go current value to max value?{in crysis warhead} |
This is a super simple script. No matter what way you choose to write it.
Everyone here has already agreed that we will write scripts for you.
Attempt the script and post it and we will help.
_________________
|
|
Back to top |
|
 |
sjl002 Master Cheater
Reputation: 0
Joined: 31 Aug 2013 Posts: 305
|
Posted: Fri Jan 08, 2016 8:55 pm Post subject: |
|
|
this is code and max code://I making this script but game crashed.
Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(ORIGINALCODE)
label(EXIT)
newmem: //this is allocated memory, you have read,write,execute access
push eax
mov [eax+14],eax//this is max value
mov eax,[eax+14]
pop eax
originalcode:
mov eax,[eax+14]
pop ecx
ret 0004
EXIT:
jmp returnhere
"Crysis.exe"+17C7BF:
jmp newmem
nop
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
"Crysis.exe"+17C7BF:
mov eax,[eax+14]
pop ecx
ret 0004
//Alt: db 8B 40 14 59 C2 04 00 |
I'm search the max value and see that the max and current ammo Are the same.how to make script for go current ammo to max?
|
|
Back to top |
|
 |
akumakuja28 Master Cheater
Reputation: 16
Joined: 28 Jun 2015 Posts: 432
|
Posted: Fri Jan 08, 2016 11:07 pm Post subject: |
|
|
Ok. sj002.
How old are you?
And what is your interest in learning asm?
Bro after seeing all your questions I starting to wonder whats really going with you. I think you might be trolling in some odd way.
_________________
|
|
Back to top |
|
 |
sjl002 Master Cheater
Reputation: 0
Joined: 31 Aug 2013 Posts: 305
|
Posted: Sat Jan 09, 2016 1:52 am Post subject: |
|
|
I am 17 years old.
If in doubt, get yourself making max ammo script for this game.
My interest in learning asm that A variety of script for health and ammo and weapon and. .. I build.And in the future helping to all peapole in hacking game.
I write current ammo & max ammo are mov eax,[eax+14].
|
|
Back to top |
|
 |
hhhuut Grandmaster Cheater
Reputation: 6
Joined: 08 Feb 2015 Posts: 607
|
Posted: Sat Jan 09, 2016 1:28 pm Post subject: |
|
|
So in your script you do something with the max. value (Offset: +14), right? But where is the current value stored (which is also needed if you want to move the max. value into the current value) ...
|
|
Back to top |
|
 |
++METHOS I post too much
Reputation: 92
Joined: 29 Oct 2010 Posts: 4197
|
Posted: Sat Jan 09, 2016 4:02 pm Post subject: |
|
|
Never played Crysis; not sure if it has anti-cheat. Nonetheless...
...assuming [eax+14] holds the value for max ammo, and [eax+10] holds the value for current ammo (just guessing here, since you have not provided enough info.), then...
Code: | push edx
mov edx,[eax+14]
mov [eax+10],edx
pop edx
originalcode:
mov eax,[eax+14]
pop ecx
ret 0004 |
If you haven't done so already, complete the tutorial and study it until you understand what you are doing.
|
|
Back to top |
|
 |
sjl002 Master Cheater
Reputation: 0
Joined: 31 Aug 2013 Posts: 305
|
Posted: Sat Jan 09, 2016 8:00 pm Post subject: |
|
|
thank you very much ++METHOS. In doing this work my problem solved.
|
|
Back to top |
|
 |
|