| View previous topic :: View next topic |
| Author |
Message |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Sat Jun 02, 2007 9:15 am Post subject: to Labyrnth |
|
|
hi
i want to hack health and my problem is i cant find base pointer and i want to use this scripts as base pointer.when i use this scripts and when enemies hurt me pointer points to my health but when i hurt enemies pointer points to enemies health!!!!!
how i can do this for my own health?
i use this scripts:
| Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
registersymbol(health)
alloc(health,4)
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
10136E9E:
jmp newmem
nop
nop
nop
returnhere:
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
mov [health],ebx
originalcode:
mov [ebx],eax
mov ebx,eax
mov eax,[esp+14]
exit:
jmp returnhere
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
dealloc(health)
unregistersymbol(health)
10136E9E:
mov [ebx],eax
mov ebx,eax
mov eax,[esp+14] |
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Sat Jun 02, 2007 11:17 am Post subject: |
|
|
This becoming more common in game for enemy and player HP to share the same instructions.
Here is a thread you can read to tell you whats going on and what to do.
http://www.extalia.com/forum/viewtopic.php?t=1999
|
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Sat Jun 02, 2007 11:59 am Post subject: |
|
|
thank you Labyrnth
but i cant do this by that way?
i cant find any pointer that points to my own health in this game i want to hack.
is there another way?
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Sat Jun 02, 2007 12:06 pm Post subject: |
|
|
| No thats the only way i know of, Player ID.
|
|
| Back to top |
|
 |
-DEViL- Expert Cheater
Reputation: 3
Joined: 21 Apr 2007 Posts: 185
|
Posted: Sat Jun 02, 2007 1:51 pm Post subject: |
|
|
| how i can find player ID in memory view?
|
|
| Back to top |
|
 |
Labyrnth Moderator
Reputation: 10
Joined: 28 Nov 2006 Posts: 6301
|
Posted: Sat Jun 02, 2007 2:23 pm Post subject: |
|
|
Read the thread i linked, This is the only one i know of.
In the memory view there will be a difference between your hp and enemies.
This is something i cant help on, but point to info on it.
|
|
| Back to top |
|
 |
kjmarket Grandmaster Cheater
Reputation: 0
Joined: 11 Oct 2006 Posts: 600
|
Posted: Sat Jun 02, 2007 10:06 pm Post subject: |
|
|
And therein lies a problem for some people (me included) as it's hard to figure out the difference, or even what you mean by a difference. I still haven't figured out my same problem with a different game, as the whole Player ID thing just isnt easy to understand. In concept it seems simple...when you look at the ascii section of memory viewer, that simplistic seeming concept becomes a blur...
_________________
I can hear the voices of opcodes. "Come and NOP me!" Come and NOP me!" |
|
| Back to top |
|
 |
|