| Change Color Of Your Name |
At the character selection screen where you enter your name, type one of the below for different colored letters:
$0 = Black
$1 = White
$2 = Blue
$3 = Green
$4 = Red
$5 = Light Blue
$6 = Yellow
$7 = Pink
$8 = Orange
$9 = Gray
|
|
| Change Profile Name And Keep Saved Files |
| Use the following trick to get all your saved data transferred to a new folder with whatever name desired. Locate and enter the "ubisoftcrytekfar cryprofilesplayer" folder. This will take you to the profiles found in the game. Find the folder that contains the name that you want to change, and open it. Highlight items inside, including folder, game.cfg file and [name]_profile_placeholder.txt text document. Copy those items and go back to the previous folder. In this screen, right click in an empty area of the screen, highlight "New" and click "Folder" (or use the File/New/Folder menu command). This will create a new folder. Rename the folder to your desired name. Open the new folder and paste the files previously copied. Go back to the previous screen. Copy File [name]_game.cfg and paste in the same screen, then rename the file you just pasted on the screen. Note: Make sure the filename has the same capitalization as the folder you renamed earlier. The file must be in following format, [desired name]_game.cfg. In the same screen copy file [name]_system.cfg and paste in same screen. Rename the file to desired name following this format, [desired name]_system.cfg. Make sure the letters .cfg file extension is included, including the period. Do not erase anything. Play game and make sure it works. |
|
| Cheat Mode |
Press ~ to display the console window. Then, enter one of the following codes to activate the corresponding cheat function.
Effect Code
God mode - god_mode_count=1
|
|
| Cheat Mode (demo Version) |
|
Press ~ during game play to display the console window. Press [Tab] to cycle through the available cheat options.
|
|
| Developer Mode |
Start the game with the -DEVMODE command line parameter. Then, press one of the following keys during game play to activate the corresponding cheat function. Note: When in developer mode, all levels will also be unlocked.
Effect - Key
Spawn point [F3]
All weapons P
999 ammunition O
Toggle no clipping [F4]
Move to next checkpoint [F2]
Save current position [F9]
Load current position [F10]
Toggle extra information [F11]
Toggle first and third person view [F1]
Toggle God mode [Backspace]
Increase speed [Equals]
Decrease speed [Minus]
Return to Default speed [F5]
|
|
| Get Different Weapons |
| If you have downloaded the enabled devmode file, open the "devmode.lua" file with a text editor. Look for a line that reads "function AllWeapons()". Underneath it there are lines that read "AddWeapon("[weapon name]");". For example, to get the mutant shotgun edit a line so it says AddWeapon("MutantShotgun");. Note: If you put a weapon that you normally cannot get in the game you will not be able to see it when you pull it up but, you still can shoot it. You may need to use the "999 ammunition" code for ammunition for that weapon. |
|
| God Mode |
Open devmode.lua in the Far Cry directory and add the following code to the bottom:
function GodMode()
if _localplayer then
_localplayer.cnt.health = 99999;
_localplayer.cnt.armor = 99999;
Hud:AddMessage(''[CHEAT]: Give 99999 health and armor'');
System.LogToConsole('' |