Skip to main content

[TACZ] Simple Enemy: Guns Config

Modify loadouts of Enemies from "TaCZ : Simple Enemy" mod

To use this mod you need to install these dependencies (and mod itself):

Creating config file

firstly launch the game with all required mods for game to create all configs.

Config file will be created at game_directory/config/SimpleEnemyMod.toml:

#ru units loadouts, structure: ["loadout_name, gunID, ammoCount, fireMode, scopeID (optional), muzzleID (optional), gripID (optional)", "next_example"]
ru_loadouts = []
#us units loadouts, structure: ["loadout_name, gunID, ammoCount, fireMode, scopeID (optional), muzzleID (optional), gripID (optional)", "next_example"]
us_loadouts = []
#pmc units loadouts, structure: ["loadout_name, gunID, ammoCount, fireMode, scopeID (optional), muzzleID (optional), gripID (optional)", "next_example"]
pmc_loadouts = []

Changing RU Units weapons

Config has a line:

ru_loadouts = []

you need create a new list entry:

ru_loadouts = [""]

after creating a new entry, name it somehow:

ru_loadouts = ["wiki_loadout"]

next you need to add a gun id, ammo count and fireMode:

ru_loadouts = ["wiki_loadout, tacz:glock_17, 18, SEMI"]

you can get gun ID by pressing F3 + H and gunID will be shown in tooltip:

Tooltip with gunID

creating more loadouts

just create a new list entry:

ru_loadouts = ["wiki_loadout, tacz:glock_17, 18, SEMI", "new entry"]

and do everything from Changing RU Units weapons step:

ru_loadouts = ["wiki_loadout, tacz:glock_17, 18, SEMI", "new entry, maxstuff:ak74ub, 20, SEMI"]