Voici la solution pour pouvoir utiliser le God Mod avec le match 1.01 . .. si toutefois il ne marche pas pour vous vous pourrez quand même reprendre de la vie ; ) D´abord ouvrez le fichier: DevMode.lua
dans le répectoire principal de Farcry après ajouter le code suivant à la fin:
--------------------Debut------------------------
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);
-----------------------Fin-----------------------
Pendant le jeu si vous appuyer sur:
5 = eau, végétation et l´herbe ON/OFF
6 = Full armure et vie
7 = 99 grenades
8 = 999 de munitions pour l´arme en cours
9 = Mode fantôme ON/OFF
0 = God mode ON/OFF