View previous topic :: View next topic |
Author |
Message |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Mon Aug 05, 2013 4:50 am Post subject: Teleport Hack help needed |
|
|
I was trying to make an auto teleportaion hack when an attack is received. This might be a bad idea. but i am working on it. I take the game Devil May Cry 3 Special Edition Pc game. I found the instruction controls the players health. I found XYZ co-ordinates. (I have made superspeed superjump hacks.) I write a code that is
Code: |
alloc(newmem,256)
label(returnhere)
label(originalcode)
label(god)
label(exit)
newmem:
cmp byte ptr [eax+3c],1
je god
originalcode:
fsub dword ptr [esp+24]
fstp dword ptr [eax+04]
jmp exit
god:
add [[0136B5D0]+50],(float)100
exit:
jmp returnhere
"dmc3se.exe"+467A5:
jmp newmem
nop
nop
returnhere:
|
But the Game is crashed when I receive an attack. But When i use mov [[0136B5D0]+50],(float)1000. I just teleported to above. But if i use add i just teleported below.(Normally 580 but using add i have -10)Is there any Possible way to make a teleport above the enemy when receiving an attack to make the player invincible??
|
|
Back to top |
|
 |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Tue Aug 06, 2013 7:43 am Post subject: |
|
|
The game doesnt crashed when i add the 4 byte value of diffrence between two floats.
4byte(float)1000 - 4byte(float)580.=( 447A0000 - 4411000)
but normally when an attack is received player will fall and make a somursault . when this code is executed he teleports above but fall from above and make somersault. How to skip the animation??
|
|
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: Tue Aug 06, 2013 5:08 pm Post subject: |
|
|
Code: | add [[0136B5D0]+50],(float)100 |
Two mistakes:
- first: [[0136B5D0]+50] - you can not use multilevel pointer in this form, you have to use more instructions. Yes, CE can convert [0136B5D0]+50 to the right address YYYYYYYY, but, your game can crash after loading other area and etc. "[0136B5D0]+50" is evaluated only while enabling script.
- second: you are using "add" instruction with float value.
_________________
|
|
Back to top |
|
 |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Wed Aug 07, 2013 7:34 am Post subject: |
|
|
But i make partial teleport hack using that one. Is there anyway to make automatic royalblock?
|
|
Back to top |
|
 |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Mon Aug 12, 2013 5:57 am Post subject: |
|
|
I found the mistake what i have done. I just replace the instruction of decreasing health as a teleport. But this doesnt work. Eventhough my health is kept as constant, I didnt make absolute teleportion. For that i want the set of instructions before the health decreasing instruction is executed. How to i find that one?
For automatic royalblock, a series of instruction is executed while enemy is attacking the player a button is pressed and instructions jumps to another location from the health decreasing instruction that is royalblock. My doubt is how to find that one?
|
|
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 Aug 12, 2013 9:01 am Post subject: |
|
|
Royalblock
Well, you probably need more analyzing.
Ultimap, CheatEngine feature, can be helpful. Unfortunately I have AMD CPU, and DBVM can not use it's full potential. I don't have time to analyze it "manually".
If you have Intel CPU, you can try enabling DBVM, and then try Ultimap thing.
Here is video I found just a minute ago.
http://www.youtube.com/watch?v=T5sXoEEPFBQ
Start ultimap, in-game and allow enemies to hit you. In CE - code did not get executed
in-game and do succesffull royal blok. In CE - code has been executed
_________________
|
|
Back to top |
|
 |
_Veggy Cheater
Reputation: 2
Joined: 30 Apr 2013 Posts: 34 Location: BReWErS rox your dox
|
Posted: Tue Aug 13, 2013 11:32 am Post subject: |
|
|
vergilganesh,
I am not sure if I understand you correctly, but you want to make some sort of teleportation from player position into enemy position?.
If so give me a reply because that is extremely easy to create.
|
|
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: Tue Aug 13, 2013 12:16 pm Post subject: |
|
|
Royal Guard works like this - hit B as soon as the enemy attacks. If you time it right you'll take no damage.
You wanted automatic royalblock.
_________________
|
|
Back to top |
|
 |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Wed Aug 14, 2013 4:29 am Post subject: |
|
|
_veggy,
I dont wanna do some teleportion using hotkeys. I m expecting some sort of automatic teleportion (when co-ordinate changes when no button is pressed or while under attack) just above my position not enemy position. I found the correct instruction controls health and Z coordinate. How to combine these two? How to findout the instruction controls enemys attack and time of attack?
mgr.inz.player
I got error DVBM is not loaded this feature is not usable. How to load DVBM? Will this affects my system performance even cheat engine is not active? I have intel pentium dual core with 256MB graphics and 4GB RAM. Is it enough to use ultimap feature for smaller games(Processor takes cpu usage 50%)
Description: |
|
Filesize: |
36.38 KB |
Viewed: |
17832 Time(s) |

|
Description: |
|
Filesize: |
35.22 KB |
Viewed: |
17832 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: Wed Aug 14, 2013 7:02 am Post subject: |
|
|
vergilganesh wrote: | I got error DVBM is not loaded this feature is not usable. How to load DVBM? Will this affects my system performance even cheat engine is not active? I have intel pentium dual core with 256MB graphics and 4GB RAM. Is it enough to use ultimap feature for smaller games(Processor takes cpu usage 50%) |
If you have WinVista, Win7, you need CPU which supports virtualization, you have to use official CE6.3, and you must pray that other PC components will allow DBVM to work. (your mainboard and cpu combination).
DBVM doesn't do anything else, so no performance drop.
If you use WinXP, you don't need DBVM, but still you need CPU with "branch trace storage" feature. (Intel cpu)
Ultimap is a very useful tool. Yes, it's not essential for your task (auto block), you can trace everything manually.... (which is kinda difficult)
_________________
|
|
Back to top |
|
 |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Wed Aug 14, 2013 7:07 am Post subject: |
|
|
I got same error when using 6.3 also.
how could i trace it manually can u pls give some ideas
Description: |
|
Filesize: |
40.7 KB |
Viewed: |
17811 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
|
|
Back to top |
|
 |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Wed Aug 14, 2013 7:22 am Post subject: |
|
|
mgr.inz.Player wrote: |
Ultimap is a very useful tool. Yes, it's not essential for your task (auto block), you can trace everything manually.... (which is kinda difficult) |
how will i find manually? any ideas?
|
|
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: Wed Aug 14, 2013 7:27 am Post subject: |
|
|
You make many breakpoints, many "Debug Step" and "Debug Step Over" (lots of hitting F7 and F8 keys), you must analyze values kept on stack, etc.
Lots of work (and if you already know what you are doing).
_________________
|
|
Back to top |
|
 |
vergilganesh Expert Cheater
Reputation: 0
Joined: 01 Jul 2013 Posts: 134 Location: India
|
Posted: Thu Aug 15, 2013 10:36 am Post subject: |
|
|
I never heard about the things you said. I want to know very basic ideas about breakpoints, debugging etc i just done break and trace instruction only. I googled but i find very advanced doubts only. Can you say something about those otherwise pls post some basic tutorials' link.
|
|
Back to top |
|
 |
|