• New Horizons on Maelstrom
    Maelstrom New Horizons


    Visit our website www.piratehorizons.com to quickly find download links for the newest versions of our New Horizons mods Beyond New Horizons and Maelstrom New Horizons!

Continue Searching for Raoul Rheims question(Vanilla)

KingTyrzo

Landlubber
I noticed that when you make your way to his house on Douwesen and Danielle attacks you for working with the Governor that it auto-disables God mode/Immortality. It's not the biggest deal in the world, I've beaten the game legitimately and love playing the game regardless but was wondering if anyone knew of a way to re-enable it?(PC not Xbox) Only way I know of is restarting the game, but you'll just again run into the same issue every time you get to that point in the storyline. I just thought it was very interesting that it does that.
 
You can edit "PROGRAM\QUESTS\quests_reaction.c". Find this part:
Code:
case "exit_after_speak_with_rheims_2":
Add this line:
Code:
LAi_SetImmortal(pchar, true);
Delete it again if you want to play the game without cheating.

The reason for this is that before Danielle attacks you, the game makes you immortal so she can't kill you, even if you had to fight random enemies on the way and are already almost dead. Then, under the assumption that players aren't cheating, it cancels your immortality after the attack.

Something similar happens later when you go to Greenford mine looking for clay tablets. You're ambushed by three thugs who try to knock you out to sell you as a slave to the mine. You're made immortal before they attack, then the immortality is cancelled after the attack. Find this part:
Code:
case "to_mines_complete":
Again add the line:
Code:
LAi_SetImmortal(pchar, true);
And again, delete it if you want to play without cheating.
 
Back
Top