mirror of
https://github.com/Teh-Dango/Sarge-AI.git
synced 2024-08-30 16:32:11 +00:00
c5e98f17e6
Epoch Update
17 lines
308 B
Plaintext
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";
|
|
};
|
|
}; |