Not a member yet? Why not Sign up today
Create an account  

Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
I DIE IN GAME(WATCH VIDEO)

#11
Sure, but it'll take at least two weeks until I have time to make a video for you.
[Bild: dna_400.gif]
Zitieren

#12
ALRIGHT ILL WAIT
Zitieren

#13
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.

[Bild: dna_400.gif]
Zitieren

#14
can you make  a video explaining how to make a health script for 4byte and doubles,choose any game to make the video with
Zitieren

#15
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.
[Bild: dna_400.gif]
Zitieren

#16
alright ill wait
Zitieren

#17
[Bild: dna_400.gif]
Zitieren

#18
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
Zitieren

#19
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
Zitieren

#20
(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
[Bild: dna_400.gif]
Zitieren



Gehe zu:


Benutzer, die gerade dieses Thema anschauen:
3 Gast/Gäste