Far Cry

Far Cry

18.10.2013 08:03:23
Tweaking cheats

German


Cheats wie god_mode_count=1 funktionieren bei euch nicht? Dann benutzt
doch meinen God-Mode oder macht euch für die Gegner unsichtbar. Oder
wollt ihr einfach rumballern ohne nachzuladen? Alles kein Problem...

Spiel:
Getestet mit Far Cry 1.1, deutsche Version.

Installation:
Legt eine Verknüpfung für Far Cry an und gebt in den Eigenschaften der
Verknüpfung hinter "[...]Bin32\FarCry.exe" -DEVMODE ein. Es müsste
dannin etwa so aussehen:
"C:\Programme\Ubisoft\CryTek\Far Cry\Bin32\FarCry.exe" - DEVMODE
Geht in euren Far Cry-Ordner und öffnet die Datei "DevMode.lua" mit
einem beliebigen Text-Editor (etwa der Editor von Windows). Scrollt bis
zum Ende des geöffneten Dokumentes, erstellt eine Leerzeile und fügt
folgenden Text (beginnend mit den --) ein (per STRG + C hier kopieren
und per STRG + V dort einfügen):

-- beginning new DevMode.lua code by ThunderEye

function ToggleGhost()

if (not ghost) then
ghost=1;
else
ghost=1-ghost;
end
if (ghost==1) then
Hud:AddMessage("[CHEAT]: Ghost mode ON");
ai_ignoreplayer = "1"
else
Hud:AddMessage("[CHEAT]: Ghost mode OFF");
ai_ignoreplayer = "0"
end
end

Input:BindCommandToKey("#ToggleGhost()","9",1);

function ToggleGod()

if (not god) then
god=1;
else
god=1-god;
end
if (god==1) then
Hud:AddMessage("[CHEAT]: God mode ON");
else
Hud:AddMessage("[CHEAT]: God mode OFF");
end
end

Input:BindCommandToKey("#ToggleGod()","0",1);

function NoReload()

if _localplayer then
_localplayer.cnt.ammo_in_clip=999;
Hud:AddMessage("[CHEAT]: Give 999 ammo without reload");
else
Hud:AddMessage("[CHEAT]: no ammo today");
end
end

Input:BindCommandToKey("#NoReload()","8",1);

function FullGrenades()

_localplayer.cnt.numofgrenades=99;
Hud:AddMessage("[CHEAT]: Give full grenades");
end

Input:BindCommandToKey("#FullGrenades()","7",1);

function HealthArmor()

if _localplayer then
_localplayer.cnt.health=999;
_localplayer.cnt.armor=999;
Hud:AddMessage("[CHEAT]: Give huge amount of health and armor");
else
Hud:AddMessage("[CHEAT]: no health and armor");
end
end

Input:BindCommandToKey("#HealthArmor()","6",1);

function OtherStuff()

if (not stuff) then
stuff=1;
else
stuff=1-stuff;
end
if (stuff==1) then
Hud:AddMessage("[CHEAT]: Water, vegetation and fog OFF");
e_water_ocean = "0"
e_vegetation = "0"
e_fog = "0"
else
Hud:AddMessage("[CHEAT]: Water, vegetation and fog ON");
e_water_ocean = "1"
e_vegetation = "1"
e_fog = "1"
end
end

Input:BindCommandToKey("#OtherStuff()","5",1);

-- end new DevMode.lua code by ThunderEye

Speichert die Datei und schließt sie. Startet nun das Spiel über die neu
angelegte Verknüpfung. Darin habt ihr auf einigen Tasten jetzt (neue)
Cheat-Funktionen.

Bekannte Funktionen:
[O] = Volle Munition
[P] = Alle Waffen
[F1] = Third Person Ansicht AN/AUS
[F2] = Nächster Spawn-Punkt
[F3] = Flug-Modus AN/AUS
[F4] = Kein Clipping AN/AUS
[F8] = Debugger AN/AUS
[F9] = Schnellspeichern
[F10] = Schnellladen
[F11] - KI-Infos AN/AUS


Neue Funktionen (nach Einfügen meines Codes):
[5] = Wasser, Vegetation und Nebel AN/AUS
[6] = Riesige Menge an Energie und Rüstung
[7] = Aktuelle Granate wird mit 99 Einheiten aufgefüllt
[8] = Aktuelle Waffe erhält 999 Schuss (OHNE Nachzuladen!)
[9] = Geist-Modus AN/AUS (Gegner ignorieren Spieler)
[0] = Gott-Modus AN/AUS (Energie wird kurz vor dem Tod wieder voll
aufgefüllt)


Deinstallation:
Den oben gezeigten Code aus der DevMode.lua löschen.

Disclaimer:
Ich übernehme keine Verantwortung für eventuelle Schäden - die durch das
Editieren der Dateien oder Benutzen der Cheats - im Spiel und/oder an
eurem Computer auftreten können. Sicherheits-Kopie ist das Stichwort.

Hinweis:
Bevor ihr die Cheats benutzt, seid so ehrlich zu euch selbst und spielt
das Spiel erstmal real durch. Meine Cheats sind nur für Fun-Games
gedacht, da das Spiel nicht wirklich schwer und gut zu schaffen ist.


ThunderEye, thundereye@lionsource.com


English


Cheats such as god_mode_count=1 do not work for you? Then use my god
mode or make yourself invisible for the enemies. Or do you want to shot
without to reload? No problem...

Game:
Tested with Far Cry 1.1, german version.

Installation:
Create a desktop shortcut for Far Cry, get the properties and add
-DEVMODE at the and of the target field, behind "[...]Bin32\FarCry.exe".
It looks similar like this:
"C:\Program Files\Ubisoft\CryTek\Far Cry\Bin32\FarCry.exe" - DEVMODE
Now get into the Far Cry folder and open the file "DevMode.lua" with a
text editor (like the windows editor). Scroll at the end of the document
and insert the following text (STRG + C for copy and STRG + V for insert):


-- beginning new DevMode.lua code by ThunderEye

function ToggleGhost()

if (not ghost) then
ghost=1;
else
ghost=1-ghost;
end
if (ghost==1) then
Hud:AddMessage("[CHEAT]: Ghost mode ON");
ai_ignoreplayer = "1"
else
Hud:AddMessage("[CHEAT]: Ghost mode OFF");
ai_ignoreplayer = "0"
end
end

Input:BindCommandToKey("#ToggleGhost()","9",1);

function ToggleGod()

if (not god) then
god=1;
else
god=1-god;
end
if (god==1) then
Hud:AddMessage("[CHEAT]: God mode ON");
else
Hud:AddMessage("[CHEAT]: God mode OFF");
end
end

Input:BindCommandToKey("#ToggleGod()","0",1);

function NoReload()

if _localplayer then
_localplayer.cnt.ammo_in_clip=999;
Hud:AddMessage("[CHEAT]: Give 999 ammo without reload");
else
Hud:AddMessage("[CHEAT]: no ammo today");
end
end

Input:BindCommandToKey("#NoReload()","8",1);

function FullGrenades()

_localplayer.cnt.numofgrenades=99;
Hud:AddMessage("[CHEAT]: Give full grenades");
end

Input:BindCommandToKey("#FullGrenades()","7",1);

function HealthArmor()

if _localplayer then
_localplayer.cnt.health=999;
_localplayer.cnt.armor=999;
Hud:AddMessage("[CHEAT]: Give huge amount of health and armor");
else
Hud:AddMessage("[CHEAT]: no health and armor");
end
end

Input:BindCommandToKey("#HealthArmor()","6",1);

function OtherStuff()

if (not stuff) then
stuff=1;
else
stuff=1-stuff;
end
if (stuff==1) then
Hud:AddMessage("[CHEAT]: Water, vegetation and fog OFF");
e_water_ocean = "0"
e_vegetation = "0"
e_fog = "0"
else
Hud:AddMessage("[CHEAT]: Water, vegetation and fog ON");
e_water_ocean = "1"
e_vegetation = "1"
e_fog = "1"
end
end

Input:BindCommandToKey("#OtherStuff()","5",1);

-- end new DevMode.lua code by ThunderEye

Save the file and close it. Start the game with the desktop shortcut.
Some keys have now (new) cheat functions.

Known cheats:
[O] = Full ammo
[P] = All weapons
[F1] = Third person view ON/OFF
[F2] = Next spawn point
[F3] = Fly mode ON/OFF
[F4] = No clipping ON/OFF
[F8] = Debugger ON/OFF
[F9] = Fast save current position
[F10] = Fast load current position
[F11] - AI infos ON/OFF

New cheats (with my code):
[5] = Water, vegetation and fog ON/OFF
[6] = Huge amount of health and armor
[7] = Current grenade with 99 ammo
[8] = Current weapon with 999 ammo (WITHOUT reloading!)
[9] = Ghost mode ON/OFF (Enemies ignore player)
[0] = God mode ON/OFF (Health will be recovered before death)


Uninstallation:
Remove my code from the DevMode.lua.

Disclaimer:
The author is not responsible for possible damage by installation and/or
use in your game and/or on your computer. Use at your own risk.

Note:
Try to play the game without cheats the first time, it is not that hard.
My cheats are for fun games.

ThunderEye, thundereye@lionsource.com


 
Comments:
Your comment has been saved!!!
The Captcha element applies the Captcha validation, which uses reCaptcha's anti-bot service to reduce spam submissions.

2022-05-30 19:31:05... - lWsGBnIPQL

commercial ad analysis essay band 6 world order essay explication essay poetry creative writing flip chart essays history social and economic development of two developing countries history essay natural order macbeth essay how to write an essay on greek mythology ready made mba dissertation art history essay help do your homework now meme entri65706850 Write essays for college students custom papers journal writing service the essay helper english creative writing past paper resume writing service newark de city lit a taste of creative writing online photo essay maker


No intros Patch
Patch

18.October 2013
Tweaking cheats
Cheats

18.October 2013
Modifier for the full version
Tool

18.October 2013
Mega trainer
Trainer

17.October 2013
Cheats enabler and cheats
Cheats

17.October 2013
Script for key bindings
Script

17.October 2013
Trainer for god mode and berserker mode (for the demo version)
Trainer

15.October 2013
 
Most Popular
30. December 2013
07.June 2019
28.February 2016
25.September 2015
04.March 2019
07.May 2019