Template selection according to enemy preset

This commit is contained in:
Iliane Dräger 2019-07-26 16:43:53 +02:00
parent 8ea524d0ba
commit 2e414e55ae
1 changed files with 24 additions and 1 deletions

View File

@ -70,13 +70,36 @@ execVM "scripts\server\sector\manage_sectors.sqf";
// Select FOB templates
switch (KP_liberation_preset_opfor) do {
case 1: {
KPLIB_fob_templates = [
"scripts\fob_templates\apex\template1.sqf",
"scripts\fob_templates\apex\template2.sqf",
"scripts\fob_templates\apex\template3.sqf",
"scripts\fob_templates\apex\template4.sqf",
"scripts\fob_templates\apex\template5.sqf"
];
};
case 12: {
KPLIB_fob_templates = [
"scripts\fob_templates\unsung\template1.sqf",
"scripts\fob_templates\unsung\template2.sqf",
"scripts\fob_templates\unsung\template3.sqf",
"scripts\fob_templates\unsung\template4.sqf",
"scripts\fob_templates\unsung\template5.sqf"
];
};
default {
KPLIB_fob_templates = [
"scripts\fob_templates\default\template1.sqf",
"scripts\fob_templates\default\template2.sqf",
"scripts\fob_templates\default\template3.sqf",
"scripts\fob_templates\default\template4.sqf",
"scripts\fob_templates\default\template5.sqf"
"scripts\fob_templates\default\template5.sqf",
"scripts\fob_templates\default\template6.sqf",
"scripts\fob_templates\default\template7.sqf",
"scripts\fob_templates\default\template8.sqf",
"scripts\fob_templates\default\template9.sqf",
"scripts\fob_templates\default\template10.sqf"
];
};
};