Console cheat trouble in Far Cry

CDC Mail Guy

Golden Member
May 2, 2005
1,213
0
71
The console is enabled. Trying to get some cheats going, but they won't work.

I type in "god_mode_count=1" (without the quotes) and it goes in, but I still keep dying!
same for "give_all_ammo=1" and "give_all_weapons=1" and nothing works. What am I doing wrong
 

Molondo

Platinum Member
Sep 6, 2005
2,529
1
0
I think you keep dying but never die. You go down to 1 hp. I might be thinking of another game actually.
 

tigersty1e

Golden Member
Dec 13, 2004
1,963
0
76
I dunno.

Maybe you need to set a master cheat to yes...

sv_cheats 1 (or something similar)
 

CDC Mail Guy

Golden Member
May 2, 2005
1,213
0
71
Originally posted by: Molondo
I think you keep dying but never die. You go down to 1 hp. I might be thinking of another game actually.

No...I die! You must be thinking of another game, but thank you for responding. I just have to get past the boss in the helicopter when I'm on the boat.
 

TheRyuu

Diamond Member
Dec 3, 2005
5,479
14
81
Open up devmode.lua file (which is somewhere in Far Cry directory).

Add this to the end of it:
function ToggleGod()
if (not god) then
god=1;
else
god=1-god;
end
if (god==1) then
System:LogToConsole("God-Mode ON");
else
System:LogToConsole("God-Mode OFF");
end
end
Input:BindCommandToKey("#ToggleGod()","backspace",1);

Now start the game with -DEVMODE (add it to the shortcut) Like "C:/Farcry.exe" -DEVMODE (outside of the quotes).

"Backspace" is godmode, all weapons is "P", 999 ammo is "O" (O, letter O, not 0 zero).

You can find the rest here:
http://www.cheatcc.com/pc/farcry.html

 

shortylickens

No Lifer
Jul 15, 2003
80,287
17,081
136
http://www.gamefaqs.com/comput...swin/file/371314/29726
An excerpt:


[F. Cheats]
***********************************************************************
The GODMODE cheat is finally here. Enjoy, you cheaters XP

---[ENABLE CHEATS]---
First right click on the Far Cry icon on your desktop. Then go to
properties. A new screen should pop up. Find the words that come AFTER
target which should be something like this (this was my target):

"C:\Program Files\UBISOFT\Crytek\Far Cry\Bin32\FarCry.exe"

Without removing ANYTHING or adding ANYTHING (quotes were there to
begin with, I did not put them there), add ?DEVMODE to the end. The
ending result should look something like this:

"C:\Program Files\UBISOFT\Crytek\Far Cry\Bin32\FarCry.exe" -DEVMODE

---[CHEATING]---
Now cheats are enabled! YAY!
All Weapons ? P
999 Ammo (not unlimited) ? O
Save current position ? F9
Load saved position ? F10
No clipping ? F4
God Mode ? Backspace (For some it works, for others it doesn?t).
Quick Load - \load_game [name]
Quick Save - \save_game [name]

---[GOD MODE]---
First locate the DevMode.lua file in the Far Cry directory:

C:\Program Files\UBISOFT\Crytek\Far Cry

That was mine directory. Now copy the DevMode.lua into a random folder
that you can remember (in case you mess something up). After that open
a text editor (like Notepad) and then open the file DevMode.lua with
it. Add the following to the *BOTTOM* of the document (no quotes):

?function GodMode()
if _localplayer then
_localplayer.cnt.health = 99999;
_localplayer.cnt.armor = 99999;
Hud:AddMessage(''[CHEAT]: Give 99999 health and armor'');
System.LogToConsole(''\001CHEAT: Give 99999 health and armor'');
else
Hud:AddMessage(''[CHEAT]: No godmode today'');
end
end?

Save it! During gameplay type in: #GodMode() and you'll be unstoppable.