Sarge-AI/sarge/UPSMON/MODULES/UPSMON_ModifyUcthis.sqf
Teh Dango c5e98f17e6 Epoch Update
Epoch Update
2017-10-25 21:36:31 -04:00

17 lines
308 B
Plaintext

private ["_npc"];
_npc = _this select 0;
_grp = group _npc;
If (!IsNull _npc && alive _npc && _grp in UPSMON_NPCs) then
{
_grp setvariable ["UPSMON_Removegroup",true];
waituntil {!alive _npc || !(_grp in UPSMON_NPCs)};
If (alive _npc) then
{
_this execvm "\addons\sarge\UPSMON\UPSMON.sqf";
};
};