Is it possible to define multiple kits or npcs presets per spawn profile? For example to list more than one possible loadout for the npcs for each event.
I cant seem to get the plugin to register such configurations.
something like:
"guard spawn amount": 10,
"guard spawn profile": {
"Name": "Launch Site Guard",
"Kit": "Npc_kit1", "Npc_kit2", "Npc_kit3",
"Health": 350.0,
"RoamRange": 25.0,
"ChaseRange": 40.0,
"SenseRange": 150.0,
or
"guard spawn amount": 10,
"guard spawn profile": {
"Name": "Launch Site Guard",
"Kit": [
"Npc_kit1",
"Npc_kit2",
"Npc_kit3"
],
"Health": 350.0,
"RoamRange": 25.0,
"ChaseRange": 40.0,
"SenseRange": 150.0,
or
"Kit": "Npc_kit1, Npc_kit2, Npc_kit3",
none seem to function.