-
Notifications
You must be signed in to change notification settings - Fork 4
Home
Here you can find additional information about the mod and certain features that aren't available or explained via the ingame menu.
You can block certain equipment from being selected by the randomizer. Simply edit the file player_randomizer_blacklist.txt
in the mods/saves
directory and add IDs between the corresponding brackets.
The file should look like this:
{
"weapons": [],
"mods": [],
"melee_weapons": [],
"throwables": [],
"armors": [],
"deployables": []
}
Blocking certain types of equipment is done by adding its internal ID to the relevant list (the square brackets).
Your file could look something like this:
{
"weapons": ["m249", "amcar"],
"mods": ["wpn_fps_upg_m4_m_straight_vanilla"],
"melee_weapons": ["fists"],
"throwables": ["dynamite", "wpn_prj_ace"],
"armors": ["level_1"],
"deployables": ["bodybags_bag"]
}
This would block the KSP and Amcar ("m249", "amcar"), the Vintage Mag ("wpn_fps_upg_m4_m_straight_vanilla"), the Fists ("fists"), Dynamite and Ace of Spades ("dynamite", "wpn_prj_ace"), Suit ("level_1") and the Bodybags deployable ("bodybags_bag").
If you need to find out weapon or mod IDs, check the modworkshop wiki.