View previous topic :: View next topic |
Author |
Message |
sp4rx Advanced Cheater
Reputation: 0
Joined: 19 Feb 2013 Posts: 64 Location: India
|
Posted: Sat May 18, 2013 4:41 am Post subject: Help me in Teleport Hack |
|
|
Can any one tell me haw to make a teleport hack,,
I have found the x y z axis
|
|
Back to top |
|
 |
mgr.inz.Player I post too much
Reputation: 222
Joined: 07 Nov 2008 Posts: 4438 Location: W kraju nad Wisla. UTC+01:00
|
Posted: Sat May 18, 2013 4:47 am Post subject: |
|
|
Post your current table.
_________________
|
|
Back to top |
|
 |
sp4rx Advanced Cheater
Reputation: 0
Joined: 19 Feb 2013 Posts: 64 Location: India
|
Posted: Sun May 19, 2013 4:55 am Post subject: |
|
|
this is mt cheat table
i just found the co-ordinates
but don't know where to store them in the trainer
Description: |
|
 Download |
Filename: |
hl-cordinates.CT |
Filesize: |
1.69 KB |
Downloaded: |
745 Time(s) |
|
|
Back to top |
|
 |
mgr.inz.Player I post too much
Reputation: 222
Joined: 07 Nov 2008 Posts: 4438 Location: W kraju nad Wisla. UTC+01:00
|
Posted: Mon May 20, 2013 8:18 am Post subject: |
|
|
well, if you use AA script, you just allocate some space and use something similar to this
Code: | newmem:
...
...
...
//store pos
push edx
mov edx,[eax]
mov [storedPosition],edx
mov edx,[eax+4]
mov [storedPosition+4],edx
mov edx,[eax+8]
mov [storedPosition+8],edx
pop edx
...
...
//restore pos
push edx
mov edx,[storedPosition]
mov [eax],edx
mov edx,[storedPosition+4]
mov [eax+4],edx
mov edx,[storedPosition+8]
mov [eax+8],edx
pop edx
...
...
storedPosition:
dd 0
dd 0
dd 0 |
But, in multiplayer games, player position is stored in server. (health, armor, position, etc, are server sided).
_________________
|
|
Back to top |
|
 |
sp4rx Advanced Cheater
Reputation: 0
Joined: 19 Feb 2013 Posts: 64 Location: India
|
Posted: Wed May 22, 2013 3:06 am Post subject: |
|
|
this the memory region of z-axis
and above are y and x axis
_______________________________
in your code i didn't understand what is [storeposition] Quote: | mov [storedPosition],edx |
please help me.. mgr.inz.Player
thanx in advance
Description: |
|
Filesize: |
93.02 KB |
Viewed: |
9335 Time(s) |

|
|
|
Back to top |
|
 |
sp4rx Advanced Cheater
Reputation: 0
Joined: 19 Feb 2013 Posts: 64 Location: India
|
Posted: Thu May 23, 2013 12:22 pm Post subject: |
|
|
pls help me,, m stuck..
|
|
Back to top |
|
 |
ashran Newbie cheater
Reputation: 0
Joined: 20 Jul 2011 Posts: 18
|
Posted: Thu May 30, 2013 10:33 pm Post subject: |
|
|
This is out of your scope. Work on single player games first.
|
|
Back to top |
|
 |
atom0s Moderator
Reputation: 205
Joined: 25 Jan 2006 Posts: 8587 Location: 127.0.0.1
|
Posted: Thu May 30, 2013 10:42 pm Post subject: |
|
|
If you are trying to do this online, it will not work unless you are locally hosting the game yourself. Counter-Strikes movement is synced with the server and handled by the server. Meaning trying to teleport will do nothing on your end because the server will reject the movement change.
_________________
- Retired. |
|
Back to top |
|
 |
|