diff --git a/@ExileServer/addons/a3_dms/missions/mission1.sqf b/@ExileServer/addons/a3_dms/missions/mission1.sqf index 60be174..27596be 100644 --- a/@ExileServer/addons/a3_dms/missions/mission1.sqf +++ b/@ExileServer/addons/a3_dms/missions/mission1.sqf @@ -16,7 +16,7 @@ _side = "bandit"; // find position -_pos = call DMS_findSafePos; +_pos = [10,100] call DMS_findSafePos; // Set general mission difficulty diff --git a/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf b/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf index 66606a3..1535146 100644 --- a/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf +++ b/@ExileServer/addons/a3_dms/scripts/FillCrate.sqf @@ -128,12 +128,12 @@ if ((_backpackCount > 0) && {count _backpacks>0}) then }; -if(DMS_RareLoot && {count DMS_RareLoot>0}) then +if(DMS_RareLoot && {count DMS_RareLootList>0}) then { // (Maybe) Add rare loot if(random 100 < DMS_RareLootChance) then { - _item = DMS_RareLoot call BIS_fnc_selectRandom; + _item = DMS_RareLootList call BIS_fnc_selectRandom; if ((typeName _item)=="STRING") then { _item = [_item,1];