ExileLootDrop/ExileLootDrop.VR/init.sqf
Matthew McConnell cd8989f228 First Commit
2016-09-27 22:50:00 +01:00

37 lines
1.2 KiB
Plaintext

ExileServer_system_lootManager_dropItem_sqf = {
private["_lootTableName","_itemClassName","_lootTableConfig","_sum","_count","_half","_halfIndex","_lootTableEntries","_maxPossible","_chance","_startIndex","_endIndex","_i","_entry"];
_lootTableName = _this;
_itemClassName = "";
_lootTableConfig = missionConfigFile >> "CfgLootTables" >> _lootTableName;
_sum = getNumber(_lootTableConfig >> "sum");
_count = getNumber(_lootTableConfig >> "count");
_half = getNumber(_lootTableConfig >> "half");
_halfIndex = getNumber(_lootTableConfig >> "halfIndex");
_lootTableEntries = getArray(_lootTableConfig >> "items");
_maxPossible = (count _lootTableEntries)-1;
_chance = random(_sum);
if (_chance >= _half) then
{
_startIndex = _halfIndex;
_endIndex = _count - 1;
}
else
{
_startIndex = 0;
_endIndex = _halfIndex + 1;
};
if (_endIndex > _maxPossible) then
{
_endIndex = _maxPossible;
};
for "_i" from _startIndex to _endIndex do
{
_entry = _lootTableEntries select _i;
if (_chance <= (_entry select 0)) exitWith
{
_itemClassName = _entry select 1;
};
};
_itemClassName
};
ExileServer_system_lootManager_dropItem_ext = compile preprocessFileLineNumbers '\ExileLootDrop\ExileServer_system_lootManager_dropItem.sqf';