Sarge-AI/ModName.MapName/scripts/UPSMON/MODULES/UPSMON_ModifyUcthis.sqf
Teh Dango 65e4453908 2.4.0
Major Update. Now supporting DesolationRedux, Epoch and Exile.
2017-12-31 03:16:37 -05:00

17 lines
295 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 "Scripts\UPSMON.sqf";
};
};