Page 1 of 12

RAGE 2 [Engine:APEX]

Posted: Tue May 14, 2019 2:43 am
by SunBeam
Updated to 1.2, including the below:

[+] Adjusted some scripts
[+] Added Overdrive Multiplier 10x script

For the latter one: note that I basically hijack the Level it should bring the Multiplier to, setting it to the Max possible (10) and change the Timer Minuend to 100.0 (instead of the base value of 2.0). That gives you like 100s till the level depletes. However, when the depletion happens, it will auto-fill back-up to 10 and full. So you don't need to worry about it :P If you have some GUI OCD and don't want to see that purple bar go down, change 100.0 in the script to 1000.0 (or some high value).

Oh.. and just kill some fucker to activate :)

Notes:

1. If you alt-tab and get back in, it may look like the purple level is not updating (not decreasing). Don't get fooled into thinking it's frozen. It just didn't update :) You'll at some point see it empty out, get back up to full and starting to decrease.

2. No, although I can make an "Unlimited Overdrive Duration" script, it makes no sense to do so, as you cannot turn Overdrive off (unless you would disable the said script).

3. After you transition to a location, you may notice the Multiplier doesn't show up when you kill someone. That's due to the fact that the engine reinitializes GUI and other crap when you teleport via F key. The Multiplier is still there, doing its thing, still at Level 10. You just don't see it. If your OCD says it should show up, then disable the script before you teleport with F, do F, re-enable script. Note that you may still have to wait 100 seconds before the x10 shows up.

Bottom line: want other behavior, mod the script yourself.

* * *

Updated to 1.1, including the below:

Image

* * *

Hello folks,

Quick and fast table that gets you Unlimited Clip Ammo. You have the g_Player pointer which you can use for other crap like finding Health or in CMPs in your scripts :P I will post more soon (including some nice engine cheats and mods).

Image

EDIT:

Overdrive is at g_Player + D90:

Code: Select all

RAGE2.exe+9B609A - F3 0F11 8F 900D0000   - movss [rdi+00000D90],xmm1 <-- here
RAGE2.exe+9B60A2 - 48 8D 4F 10           - lea rcx,[rdi+10]
RAGE2.exe+9B60A6 - E8 7584E8FF           - call RAGE2.exe+83E520
RAGE2.exe+9B60AB - 48 8B D8              - mov rbx,rax
RAGE2.exe+9B60AE - 48 85 C0              - test rax,rax
Keep value frozen at (float)1.0.

BR,
Sun

P.S.: Feel free to post your shit ;)

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 2:44 am
by STN
You stole it from me, thief :ph34r:

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 8:52 am
by SunBeam
STN wrote:
Tue May 14, 2019 2:44 am
You stole it from me, thief :ph34r:
I only steal.. love and affection.. from a few select people I care about :D :D

Welp, about to enable a hidden menu in the game :D Fingers crossed :)

EDIT:

Image

Image

Image

Image

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 10:11 am
by fireundubh
The Cheats menu is actually not hidden if you have the Deluxe Edition.

Those are the Wasteland Wizard Cheat Codes. There is also a Wasteland Wizard NPC in the game who can add more cheats to that menu.

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 12:12 pm
by SunBeam
I haven't played the game that far to get to unlock them. However, I've managed to show up the menu and options within. They are toggleable now :) Will update the table in a jiffy.

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 1:41 pm
by SunBeam
Found what the cheats do ;) Nice little engine this APEX :) Here's the "Force Daytime" cheat:

Code: Select all

RAGE2.exe+8862B3 - E8 1855E8FF           - call RAGE2.exe+70B7D0 // check cheat status
RAGE2.exe+8862B8 - 84 C0                 - test al,al
RAGE2.exe+8862BA - 74 0A                 - je RAGE2.exe+8862C6
RAGE2.exe+8862BC - F3 0F10 0D 5CDFE901   - movss xmm1,[RAGE2.exe+2724220] { (12.00) } // if on, force TOD 12.0
RAGE2.exe+8862C4 - EB 15                 - jmp RAGE2.exe+8862DB
RAGE2.exe+8862C6 - BA D9EE88BA           - mov edx,BA88EED9 { (0) }
RAGE2.exe+8862CB - 49 8B C9              - mov rcx,r9
RAGE2.exe+8862CE - E8 FD54E8FF           - call RAGE2.exe+70B7D0
RAGE2.exe+8862D3 - 84 C0                 - test al,al
RAGE2.exe+8862D5 - 74 10                 - je RAGE2.exe+8862E7
RAGE2.exe+8862D7 - 41 0F28 C9            - movaps xmm1,xmm9
RAGE2.exe+8862DB - 48 8B 0D 86A67D02     - mov rcx,[RAGE2.exe+3060968] { (0602B420) } // pointer to TOD
RAGE2.exe+8862E2 - E8 99A5B5FF           - call RAGE2.exe+3E0880 // set TOD
As for "Infinite Ammo" cheat I like how it works :) Engine basically checks cheat status, then if enabled, will write to your magazine ammo -1. So when you reload, the game does the subtraction this way: -1 (in magazine) - (-1) to subtract = -1+1 = 0 :D Pure math! Once you disable the cheat, the jump's not taken and game just runs the standard routine: get player, inventory, weapon, magazine, write to slot instead of the -1.

BR,
Sun

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 1:54 pm
by Vortox14
fireundubh wrote:
Tue May 14, 2019 10:11 am
The Cheats menu is actually not hidden if you have the Deluxe Edition.

Those are the Wasteland Wizard Cheat Codes. There is also a Wasteland Wizard NPC in the game who can add more cheats to that menu.
It is hidden for good portion of the intro sequence, even with the Deluxe/Pre-Order bonuses :P.

@SunBeam, The infinite clip ammo script, doesn't work on the BFG 9000. :(

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 2:45 pm
by fireundubh
SunBeam wrote:
Tue May 14, 2019 2:20 pm
When do you get that gun or whatever it is?
The BFG 9000 is a Deluxe Edition DLC weapon that drops out of the sky after you get your first vehicle and drive forward a bit. To get ammo for the BFG 9000, you have to purchase the ammo from a merchant in Wellspring. Its ammo cannot be found like other ammo.

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 3:10 pm
by SunBeam
After watching a video I clearly understand your problem. My script says "Unlimited Clip Ammo". That weapon runs only only MAGAZINE AMMO. I thought you were smart enough to distinguish between a clip and a magazine (check a normal weapon; it has "X/Y" ammo; the BFG 9000 has only "Y"; my script makes only "X" unlimited).

EDIT: Think I got it; the big ass ammo processing function does multiple things. Player and vehicle ammo, at the same time. Vehicles run on only magazine ammo, acquired via the ammo_type hash at 0x3FC. For player, there's 2 operations: first doing the clip, if weapon has a clip; secondly, fetching magazine and adding clip to magazine for updating/display. Will update the script in a while.

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 3:22 pm
by Vortox14
I can manage, the other weapons is plenty.
SunBeam wrote:
Tue May 14, 2019 3:10 pm
...I thought you were smart enough to distinguish between a clip and a magazine (check a normal weapon; it has "X/Y" ammo; the BFG 9000 has only "Y"; my script makes only "X" unlimited). ...
I'm entitled to miss things :P. Has is anyone else.

Re: RAGE2 [Engine:APEX]

Posted: Tue May 14, 2019 10:13 pm
by SunBeam
^ I'll consider not responding in the future. I'm entitled to that too.

Re: RAGE2 [Engine:APEX]

Posted: Wed May 15, 2019 1:53 pm
by dirtydanisreal
Thanks, Sunbeam! Anyway to unlock the DLC weapons on the standard edition? i think the files are there.

Re: RAGE2 [Engine:APEX]

Posted: Wed May 15, 2019 2:10 pm
by jonasbeckman
It's linked to the Bethesda.net account and various checks though what do I know there might be all kinds of workarounds.
Was wondering where that stuff was and then a bit of reading and "Oh." and then that answered why the bonus gear was MIA. :P

Nice to see some work on the table and this new APEX engine title already. :)

Re: RAGE2 [Engine:APEX]

Posted: Wed May 15, 2019 2:12 pm
by Kalamity222
Sooo about that cheat menu.... XD

Re: RAGE2 [Engine:APEX]

Posted: Wed May 15, 2019 4:41 pm
by samuelhanson
Thanks for this, looking forward to the extra cheats, have the deluxe edition but only have 4 or so cheats when the rest are locked away :(

Edit - Spelling fixes. Mainly wanting cheats like the Ozzy man reviews voice-over commentary. Pizza party? Rainbow mode..?