HudFreeGaming Wiki
Advertisement

Far Cry
Grade: C / D

Console commands to disable hud in Far Cry: cl_display_hud = 0 or to keep crosshair: hud_disableradar = 1 and hud_fadeamount 0.  Settings don’t stick, so lets create a toggle button:

Go to your FarCry folder and open DevMode.lua.  Add the following text:

function ToggleHud()

    if (hudmode~=0) then
        hudmode=0;
        hud_disableradar = "1"
        hud_fadeamount = "0"

    else
        hudmode=1;
        hud_disableradar = "0"
        hud_fadeamount = "1"

    end

endInput:BindCommandToKey("#ToggleHud()","h",1);

function ToggleAllHud()
    if (not cl_display_hud) then
        cl_display_hud=1;
    else
        cl_display_hud=1-cl_display_hud;
    end

end
Input:BindCommandToKey("#ToggleAllHud()","n",1);

Replace the “h” and “n” buttons with the keys of your choice.  Function ToggleHud() disables hud, but keeps the crosshair.  Function ToggleAllHud() disables everything.

If you'd like to create a button to holster your weapon, add this to the DevMode.lua file:

function Holster()

if (not r_NoDrawNear) then
r_NoDrawNear=1;
else
r_NoDrawNear=1-r_NoDrawNear;
end
end
Input:BindCommandToKey("#Holster()","y",1);

Change the key from "y" to the key of your choice.

Now, create a shortcut to FarCry.  Edit the Shortcut with the following path:

F:\FarCry\Bin32\FarCry.exe –DEVMODE

Replace F:\ with the drive where the game is installed.  -DEVMODE is essential for the game to use DevMode.lua

(other config files don't correctly incorporate edits)

FarCry0022

Far Cry - No hud, first level

Wikia-Visualization-Main

Far Cry - No Hud, on the beach

FarCry0027

Far Cry - No Hud, research level 2

FarCry0029

Far Cry - No Hud, research level

Advertisement