Skip to main content

Mods Survey

Community-reported

Sourced from Nexus Mods, ModDB, and the OWG forum — see Getting Started for the full provenance note.

A catalog of which existing mods and tools are worth studying, as distinct from dead ends (pure shader presets, cheats, etc). Sources: Nexus Mods (67 mods), ModDB (60 mods), plus a handful of mods surfaced while reading the OpenWorldGames forum (see Getting Started). ~22 Nexus/ModDB mods are cross-posted to both — those are listed once with both links.

Key technical facts surfaced by this survey (not just mod recommendations)

  • Archive format confirmed: multiple mod descriptions reference patch.dat / patch.fat as the pair of files that hold the game's packed assets — "Far Cry 2 Rewards" explicitly warns Desura users to back these up before installing. This is the pak format to target for extraction tooling.
  • Official/community map editor tool name confirmed: FARCRY2_MAP_EDITOR — referenced directly by two independent map-mod authors (DESERT ASSAULT, DEEP in the WOODS) as the tool they built their maps with.
  • A "Gibbed"-style tool exists for FC2: the ModDB mod "Oversaturated Far Cry 2 to Cure your Depression" says to "use Hunter's version of gibbed tools to replace worlds folder in your patch files" — confirms a Gibbed.FarCry2-style unpacker/repacker exists, authored by a modder called Hunter, who also authored "Hunter's Far Cry 2 Update" and is credited as a base for "Redux Dawn Remake" (Hunter's Redux 2.9). Hunter looks like a key name to track down directly (ModDB profile, possible GitHub).
  • Two dedicated map-editor tools beyond the stock in-game editor: "Ultimate Map Editor" (UME) and "Finos Editor Mods" both claim to unlock/merge/expand the object set available to the map editor — these are probably the highest-leverage tools for understanding the map/level format.
  • A mod-merging tool exists: "Far Cry 2 Universal Patcher" claims to combine arbitrary mods with any master mod "without any prior knowledge of the modding tools" — worth understanding its merge logic even if we don't use it directly.

Bucket key

  • START HERE — documentation/tooling, read/use before anything else
  • ENGINE PATCH — fixes or alters actual engine behavior/bugs, likely touches exe or core data
  • OVERHAUL/DATA — large data-driven gameplay mod, good for learning the stats/behavior schema
  • MAP/LEVEL — level design, editor use, or map-format precedent
  • ANIM/PHYSICS — touches animation, physics, or particle/effect systems specifically
  • ART ASSET — textures/icons/models only, no logic/engine insight
  • JUST ENB/RESHADE/SweetFX — post-process shader injector preset, external to game data, ~zero engine insight
  • MINOR TWEAK — small ini/stat/config tweak, low insight
  • SAVE/CHEAT ONLY — savegame or cheat-engine edit, not a real mod
  • EXTERNAL TOOL — runs outside the game (AHK, overlay), not modding the engine itself

Promising mods for inspection (merged, non-ENB/ReShade/SweetFX, non-AHK)

Documentation & tooling — start here

  • An Almost Complete Guide to Far Cry 2 Modding (ModDB mirror) — Boggalog. The closest thing to an SDK doc. Flagged as a top pick since the original survey but never actually opened/read — still an open gap, worth prioritizing. Update: the direct live Google Doc URL was found via Discord (🔨-fc2-modding, Nov 2021, shared by "Hunter" — see sources): https://docs.google.com/document/d/1ozhN9s_4puzSXVYs12ZAOayyL036hgQuFCVS_jSXbd0/edit — the Discord embed preview shows its table of contents: Contributors · Quick Steps (editing an existing mod) · Modding Tools · Packing/unpacking · XML Editing · XML Decoding · Hex editing · Texture conversion · Texture editing · File Management · .fat and .dat files · Unpacking .fat... This confirms it's exactly the comprehensive walkthrough its Nexus description promises — now saved locally as the Almost Complete Guide.
  • Far Cry 2 Fortunes Pack installer (ModDB, surfaced via Discord) — not a mod, an environment-setup utility: installs the Fortune's Pack expansion content (extra maps/weapons/vehicles) that Steam/Uplay/GOG copies already bundle but disc/ISO installs lack. Relevant to us because several community map-editor mods and multiplayer maps explicitly require Fortune's Pack to be installed to load correctly — worth applying to any disc-based test install before assuming a map/mod is broken.
  • SCHTEVE - FarCry 2 Modding Utility — PuppyUnicorn (Nexus only). PowerShell CLI automating modding tasks.
  • ScriptLoader — Dzert14 (Nexus only).
  • Far Cry 2 Editor With AI - Enemies and Ally — Princeton73 (Nexus only).
  • Ultimate Map Editor — ModDB only. "Combines the already existing custom Map Editors into 1, expanded with 100s of new objects." New major find.
  • Finos Editor Mods and Far Cry 2 Finos Editor Mod 3.8.49 — ModDB only. Unlocks new objects for the map editor; 3.8.49 adds usable weapons, DLC vehicles, working respawn. Also mirrored on fc2mp.com's Map editor mods page.
  • Janne252's editor mod (hosted on fc2mp.com, 18.4mb) — adds new content/textures to the map editor with its own install/uninstall launcher; this specific build also fixes a Windows 10 crash bug present in the original that affected maps made with it.
  • Al's editor mod (hosted on fc2mp.com, 269mb) — adds many new objects to the map editor; this build has Janne252's textures merged in (credited).
  • Multi editor mod v1.3.2.1 (hosted on fc2mp.com, 6.6mb) — adds extra objects/textures. Technically distinct from every other mod on this list: ships a modified Dunia.dll, i.e. actual engine-binary patching, not just FCB/XML data edits (see Engine Theory). Explicitly incompatible with the FC2MPPatcher multiplayer tool — must be uninstalled to play multiplayer.
  • Gabor's "FC2 editor mod" (not publicly released as of this writing, shared ad hoc within the "Far Cry 2 Multiplayer" Discord's map-editor/modding channels) — imports 1,700+ objects from Avatar: The Game (2009) into the FC2 map editor's object library as static decoration (vehicle animations don't port due to third-person-vs-first-person rig incompatibility — see Engine Theory). Notable as the origin point of the whole FC2/Avatar shared-Dunia-engine thread of investigation now running through this project's Discord findings.
  • Far Cry 2 Universal Patcher — ModDB only. Combines arbitrary mods with any master mod without needing the modding tools directly.
  • Far Cry 2 Rewards — ModDB only. Minor mod, but its description is the clearest confirmation of the patch.dat/patch.fat archive pair.

Engine/bugfix patches

Full overhaul / data-driven mods

Maps/level design

Animation/physics/effects

Art assets (textures/icons/models — asset pipeline, not logic)

Minor tweaks / config-level

External standalone tool (not ENB/AHK, but doesn't touch game files)

Save/cheat only (barely "mods")

Top picks to actually go read/download first

  1. Ultimate Map Editor and Finos Editor Mods / Finos Editor Mod 3.8.49 (ModDB) — the real map/level tooling, beyond the stock editor.
  2. Far Cry 2 Universal Patcher (ModDB) — understand its merge logic even before writing our own tooling.
  3. An Almost Complete Guide to Far Cry 2 Modding (Boggalog) — closest thing to an SDK doc. Done — saved locally as the Almost Complete Guide (7,992 lines). Not parsed line-by-line into these notes; treat it as a standing reference to search/open directly when a specific modding question comes up, same way the Discord source archives are used.
  4. Hunter's Far Cry 2 Update (ModDB) and tracking down Hunter's Gibbed-style tools directly — Hunter appears repeatedly as a foundational tool/patch author across both sites.
  5. Far Cry 2 - Patched and Scubrah's Patch — the two base patch lineages nearly everything else builds on.
  6. SCHTEVE and ScriptLoader (Nexus) — smaller tooling entries worth direct inspection.
  7. Functional Outposts (Nexus) and Far Cry 2 Jackal Mod / Minimod (ModDB) — best AI/behavior leads.

Dead weight (skip)

Pure ReShade/ENB/SweetFX presets (~22 on Nexus, ~8 more ModDB-exclusive ones: Hazza's Reshade Preset, Real Africa SweetFX Config, sproyd's SweetFX Config, Far Cry 2 - Graphical Enhancement Suite, plus the Nexus/ModDB cross-posted Burnt Food and Next Gen ReShade presets), the AHK toggle-ADS script, and 3 savegame/cheat uploads. Zero engine or data insight for our purposes.