View previous topic :: View next topic |
Author |
Message |
Boooret How do I cheat?
Reputation: 0
Joined: 27 Sep 2023 Posts: 2
|
Posted: Wed Sep 27, 2023 6:41 pm Post subject: Finding addresses for Onward |
|
|
Hello, I was able to modify a VR game called Onward and got myself speedhack, fire-rate hacks, and infinite ammo. But I am trying to get myself godmode but the issue is that I can't find the player health value since the game does not share it. I have tried using float and just shooting myself and slowly finding it but in my attempts I have found nothing. Please let me know what you think I should do!
P.S I found out that the health factor is "float" because there was a old onward script that had godmode and they used "float"
sample of there script
using p_GetCurrentHealth = float(__stdcall*)(uintptr_t);
p_GetCurrentHealth i_GetCurrentHealth = 0;
static float h_GetCurrentHealth(uintptr_t _this) {
if (cached_local_wps && _this == cached_local_wps && cvar::misc::god_mode) {
return 999999.f;
}
return i_GetCurrentHealth(_this);
}
|
|
Back to top |
|
 |
DrGlizzySalty How do I cheat?
Reputation: 0
Joined: 06 Oct 2023 Posts: 1
|
Posted: Fri Oct 06, 2023 11:10 pm Post subject: How? |
|
|
Hey, i was wondering how did you get the hacks you did in onward? i am currently doing the exact same right now, and really want to know! if i can get the values or how you did it that would be amazing! thanks!
|
|
Back to top |
|
 |
Boooret How do I cheat?
Reputation: 0
Joined: 27 Sep 2023 Posts: 2
|
Posted: Thu Oct 19, 2023 9:12 pm Post subject: Re: How? |
|
|
DrGlizzySalty wrote: | Hey, i was wondering how did you get the hacks you did in onward? i am currently doing the exact same right now, and really want to know! if i can get the values or how you did it that would be amazing! thanks! |
It's easy bro just look for the values of bullets like the loaded magazine and you will see. for example guns with 30 rounds search 30 on CE and then shoot the gun again search 29 and boom you will find your result
|
|
Back to top |
|
 |
|