mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
This commit is contained in:
parent
e56838be36
commit
87d1f7c281
@ -19,19 +19,13 @@
|
|||||||
* Public: Yes
|
* Public: Yes
|
||||||
*/
|
*/
|
||||||
#include "script_component.hpp"
|
#include "script_component.hpp"
|
||||||
private ["_result", "_ignoreRange", "_helper", "_pos"];
|
private ["_result", "_ignoreRange", "_pos"];
|
||||||
EXPLODE_3_PVT(_this,_unit,_range,_item);
|
EXPLODE_3_PVT(_this,_unit,_range,_item);
|
||||||
_ignoreRange = (_range == -1);
|
_ignoreRange = (_range == -1);
|
||||||
_result = true;
|
_result = true;
|
||||||
|
|
||||||
if (!_ignoreRange && {(_unit distance (_item select 0)) > _range}) exitWith {false};
|
if (!_ignoreRange && {(_unit distance (_item select 0)) > _range}) exitWith {false};
|
||||||
|
|
||||||
_helper = (attachedTo (_item select 0));
|
|
||||||
if (!isNull(_helper)) then {
|
|
||||||
detach (_item select 0);
|
|
||||||
deleteVehicle _helper;
|
|
||||||
};
|
|
||||||
|
|
||||||
if (getNumber (ConfigFile >> "CfgAmmo" >> typeof (_item select 0) >> "TriggerWhenDestroyed") == 0) then {
|
if (getNumber (ConfigFile >> "CfgAmmo" >> typeof (_item select 0) >> "TriggerWhenDestroyed") == 0) then {
|
||||||
private ["_exp", "_previousExp"];
|
private ["_exp", "_previousExp"];
|
||||||
_previousExp = _item select 0;
|
_previousExp = _item select 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user