#include "..\script_component.hpp" /* * Author: IDSolutions * Registers a defuse task * * Arguments: * 0: ID of the task * 1: Amount of entities destroyed to fail the task * 2: Amount of ieds defused to complete the task * 3: Amount of funds the company recieves if the task is successful (default: 0) * 4: Amount of rating the company and player lose if the task is failed (default: 0) * 5: Amount of rating the company and player recieve if the task is successful (default: 0) * 6: Should the mission end (MissionSuccess) if the task is successful (default: false) * 7: Should the mission end (MissionFailed) if the task is failed (default: false) * 8: Equipment rewards (default: []) * 9: Supply rewards (default: []) * 10: Weapon rewards (default: []) * 11: Vehicle rewards (default: []) * 12: Special rewards (default: []) * * Return Value: * None * * Example: * ["task_name", 2, 3, 375000, -75, 300, false, false] spawn forge_client_task_fnc_defuse; * * Public: Yes */ params [ ["_taskID", "", [""]], ["_limitFail", -1, [0]], ["_limitSuccess", -1, [0]], ["_companyFunds", 0, [0]], ["_ratingFail", 0, [0]], ["_ratingSuccess", 0, [0]], ["_endSuccess", false, [false]], ["_endFail", false, [false]], ["_equipmentRewards", [], [[]]], ["_supplyRewards", [], [[]]], ["_weaponRewards", [], [[]]], ["_vehicleRewards", [], [[]]], ["_specialRewards", [], [[]]] ]; private _result = 0; waitUntil { sleep 1; _ieds = GVAR(allIEDs) select { (_x getVariable ["assignedTask", ""]) == _taskID }; count _ieds > 0 }; waitUntil { sleep 1; _entities = GVAR(allEntities) select { (_x getVariable ["assignedTask", ""]) == _taskID }; count _entities > 0 }; private _ieds = GVAR(allIEDs) select { (_x getVariable ["assignedTask", ""]) == _taskID }; private _entities = GVAR(allEntities) select { (_x getVariable ["assignedTask", ""]) == _taskID }; waitUntil { sleep 1; private _entitiesDestroyed = ({ !alive _x } count _entities); if (_entitiesDestroyed >= _limitFail) then { _result = 1; }; (_result == 1) or ((GVAR(defusedCount) >= _limitSuccess) && (_entitiesDestroyed < _limitFail)) }; if (_result == 1) then { { deleteVehicle _x } forEach _ieds; { deleteVehicle _x } forEach _entities; [_taskID, "FAILED"] call BFUNC(taskSetState); private _penalties = createHashMap; _penalties set ["reputation", _ratingFail]; [_taskID, _penalties] call FUNC(handleTaskRewards); sleep 1; { [_x, _ratingFail] remoteExec ["addRating", -2] } forEach allPlayers; [format ["Task failed: %1 reputation", _ratingFail], "warning", 5, "right"] call EFUNC(misc,notify); if (_endFail) then { ["MissionFail", false] remoteExecCall ["BIS_fnc_endMission", playerSide]; }; } else { { deleteVehicle _x } forEach _ieds; { deleteVehicle _x } forEach _entities; private _rewards = createHashMap; _rewards set ["funds", _companyFunds]; _rewards set ["reputation", _ratingSuccess]; if (count _equipmentRewards > 0) then { _rewards set ["equipment", _equipmentRewards]; }; if (count _supplyRewards > 0) then { _rewards set ["supplies", _supplyRewards]; }; if (count _weaponRewards > 0) then { _rewards set ["weapons", _weaponRewards]; }; if (count _vehicleRewards > 0) then { _rewards set ["vehicles", _vehicleRewards]; }; if (count _specialRewards > 0) then { _rewards set ["special", _specialRewards]; }; [_taskID, _rewards] call FUNC(handleTaskRewards); [_taskID, "SUCCEEDED"] call BIS_fnc_taskSetState; sleep 1; { [_x, _ratingSuccess] remoteExec ["addRating", -2] } forEach allPlayers; [format ["Task completed: %1 reputation", _ratingSuccess], "success", 5, "right"] call EFUNC(misc,notify); [format ["Task completed: %1 funds", _companyFunds], "success", 5, "right"] call EFUNC(misc,notify); if (_endSuccess) then { ["MissionSuccess", true] remoteExecCall ["BIS_fnc_endMission", playerSide]; }; }; GVAR(defusedCount) = 0;