Home of Gamehacking

Normale Version: I DIE IN GAME(WATCH VIDEO)
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2 3 4 5 6 7
Sure, but it'll take at least two weeks until I have time to make a video for you.
ALRIGHT ILL WAIT
Please keep in mind, that this procedure is different for each game.
In some games the compare is not so easy, in other games there is no compare neccessary, etc.

can you make  a video explaining how to make a health script for 4byte and doubles,choose any game to make the video with
Sure, give me some time.
There isn't much of a difference to the script for Deep Black Reloaded, as a float value also contains 4 bytes and double is 8 bytes.
Games with double values are rare so I don't know if I can make a video for that.
alright ill wait
i try to do what you do but my health continues to decrease,heres the video,try to correct my mistake



https://vimeo.com/565910778
Hey you...

Some side note from me...
As I started with trainer making I also wanted to try hack this game. I still found some cheat code to play with but it was really hard. For this time my first game was terminator salvation I made a trainer for. And this game was already a pain in the a***...
But I must say that I had the optical media version of Vivisector. It was copy protected with the well known StarForce© Copy Protection System.
So what I meant to to say is... For me as noob it was a hard game to hack and made only a private trainer for me because it was really buggy...
But now some years later I would like to have a look at it.
Currently I'm looking for this game. Maybe I can help you.
But it needs a bit time... Gimme some time so around one day to figure this out...

grEEtZ iNvIcTUs oRCuS
(22.06.2021, 05:32)Kannibal schrieb: [ -> ]i try to do what you do but my health continues to decrease,heres the video,try to correct my mistake



https://vimeo.com/565910778

Hey.
So, your originalcode is
Code:
mov [edi+38],eax  //moves the value of eax into [edi+38]
This code moves the value of eax into [edi+38].

Your injection now is
Code:
newmem:
mov [edi+38],(int)99 //moves 99 into [edi+38]

originalcode:
mov [edi+38],eax     //moves the value of eax into [edi+38]
So your value of 99 gets overwritten by the value of eax.

There are a few possibilities now:

1.
Code:
newmem:
mov eax, (int)99 //moves 99 into eax

originalcode:
mov [edi+38],eax //moves eax into [edi+38]

2.
Code:
newmem:

originalcode:
mov [edi+38],eax       //moves eax into [edi+38]
mov [edi+38],(int)99   //moves 99 into [edi+38]

3.
Code:
newmem:

originalcode:
mov [edi+38],(int)99   //moves 99 into [edi+38]

Don't forget the call vivisector.exe+dddb0 instruction within the originalcode section
Seiten: 1 2 3 4 5 6 7