2015-08-28 05:23:34 +00:00
/*
2015-08-28 21:52:56 +00:00
DMS_FillCrate
Original credit goes to WAI: https://github.com/nerdalertdk/WICKED-AI
Edited by eraser1
Usage:
[
_crate,
[
_weapons,
_items,
_backpacks
]
] call DMS_FillCrate;
Each loot argument can be an explicitly defined array of weapons with a number to spawn, or simply a number and weapons defined in the config.sqf are used
2015-08-28 05:23:34 +00:00
*/
2015-08-28 21:52:56 +00:00
if (isNil "_this") exitWith
{
diag_log "DMS ERROR :: Calling DMS_FillCrate with nil argument!";
};
2015-08-28 05:23:34 +00:00
2015-08-28 21:52:56 +00:00
private ["_box","_lootValues","_wepCount","_weps","_itemCount","_items","_backpackCount","_backpacks","_weapon","_ammo","_item","_backpack"];
2015-08-28 05:23:34 +00:00
2015-08-28 21:52:56 +00:00
params
[
["_box",objNull,[objNull]],
["_lootValues",[0,0,0],[[]],[3]];
];
if (isNull _box) exitWith
{
diag_log format ["DMS ERROR :: Calling DMS_FillCrate with null _box | _this: %1",_this];
};
2015-08-27 07:44:23 +00:00
2015-08-28 08:38:46 +00:00
// Weapons
2015-08-28 21:52:56 +00:00
if(typeName (_lootValues select 0) == "ARRAY") then
{
_wepCount = (_lootValues select 0) select 0;
_weps = (_lootValues select 0) select 1;
}
else
{
_wepCount = _lootValues select 0;
2015-08-28 05:23:34 +00:00
_weps = DMS_boxWeapons;
2015-08-27 07:44:23 +00:00
};
2015-08-28 21:52:56 +00:00
2015-08-28 08:38:46 +00:00
// Items
2015-08-28 21:52:56 +00:00
if(typeName (_lootValues select 1) == "ARRAY") then
{
_itemCount = (_lootValues select 1) select 0;
_items = (_lootValues select 1) select 1;
}
else
{
_itemCount = _lootValues select 1;
2015-08-28 05:23:34 +00:00
_items = DMS_boxItems;
2015-08-27 07:44:23 +00:00
};
2015-08-28 21:52:56 +00:00
2015-08-28 08:38:46 +00:00
// Backpacks
2015-08-28 21:52:56 +00:00
if(typeName (_lootValues select 2) == "ARRAY") then
{
_backpackCount = (_lootValues select 2) select 0;
_backpacks = (_lootValues select 2) select 1;
}
else
{
_backpackCount = _lootValues select 2;
2015-08-28 05:23:34 +00:00
_backpacks = DMS_boxBackpacks;
2015-08-27 07:44:23 +00:00
};
2015-08-28 05:23:34 +00:00
2015-08-28 21:52:56 +00:00
if(DMS_DEBUG) then
{
diag_log format["DMS_DEBUG FillCrate :: Filling %4 with %1 guns, %2 items and %3 backpacks",_wepCount,_itemCount,_backpackCount,_box];
2015-08-27 07:44:23 +00:00
};
2015-08-28 21:52:56 +00:00
if ((_wepCount>0) && {count _weps>0}) then
{
// Add weapons + mags
for "_i" from 1 to _wepCount do
{
2015-08-28 05:23:34 +00:00
_weapon = _weps call BIS_fnc_selectRandom;
_ammo = _weapon call DMS_selectMagazine;
_box addWeaponCargoGlobal _weapon;
2015-08-29 06:09:50 +00:00
_box addMagazineCargoGlobal [_ammo, (4 + floor(random 3))];
2015-08-27 07:44:23 +00:00
};
};
2015-08-28 21:52:56 +00:00
if ((_itemCount > 0) && {count _items>0}) then
{
// Add items
for "_i" from 1 to _itemCount do
{
2015-08-28 05:23:34 +00:00
_item = _items call BIS_fnc_selectRandom;
_box addItemCargoGlobal _item;
2015-08-27 07:44:23 +00:00
};
};
2015-08-28 21:52:56 +00:00
if ((_backpackCount > 0) && {count _backpacks>0}) then
{
// Add backpacks
for "_i" from 1 to _backpackCount do
{
2015-08-28 05:23:34 +00:00
_backpack = _backpacks call BIS_fnc_selectRandom;
_box addBackpackCargoGlobal _backpack;
2015-08-27 07:44:23 +00:00
};
};
2015-08-28 21:52:56 +00:00
if(DMS_RareLoot && {count DMS_RareLoot>0}) then
{
// (Maybe) Add rare loot
if(random 100 < DMS_RareLootChance) then
{
2015-08-28 05:23:34 +00:00
_item = DMS_RareLoot call BIS_fnc_selectRandom;
_box addItemCargoGlobal _item;
2015-08-27 07:44:23 +00:00
};
};