mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
+ moved biomeat to a new badfood category, fixes mixed up cooking of raw meats. + few changes from community dev build 020613
22 lines
930 B
Plaintext
22 lines
930 B
Plaintext
private["_obj","_type","_config","_positions","_iPos","_nearBy","_itemType","_itemTypes","_itemChances","_lootChance","_weights","_cntWeights","_index"];
|
|
_obj = _this select 0;
|
|
_type = typeOf _obj;
|
|
_config = configFile >> "CfgBuildingLoot" >> _type;
|
|
_positions = [] + getArray (_config >> "lootPos");
|
|
_itemTypes = [] + getArray (_config >> "itemType");
|
|
_lootChance = getNumber (_config >> "lootChance");
|
|
{
|
|
if ((random 1) < _lootChance) then {
|
|
_iPos = _obj modelToWorld _x;
|
|
_nearBy = nearestObjects [_iPos, ["WeaponHolder","WeaponHolderBase"], 1];
|
|
if (count _nearBy == 0) then {
|
|
_index = dayz_CBLBase find _type;
|
|
_weights = dayz_CBLChances select _index;
|
|
_cntWeights = count _weights;
|
|
_index = floor(random _cntWeights);
|
|
_index = _weights select _index;
|
|
_itemType = _itemTypes select _index;
|
|
[_itemType select 0, _itemType select 1 , _iPos, 0.0] call spawn_loot;
|
|
};
|
|
};
|
|
} forEach _positions; |