mirror of
https://github.com/Teh-Dango/Sarge-AI.git
synced 2024-08-30 16:32:11 +00:00
65e4453908
Major Update. Now supporting DesolationRedux, Epoch and Exile.
19 lines
387 B
Plaintext
19 lines
387 B
Plaintext
/****************************************************************
|
|
File: UPSMON_throw_grenade.sqf
|
|
Author: MONSADA
|
|
|
|
Description:
|
|
Throw a grenade
|
|
Parameter(s):
|
|
|
|
Returns:
|
|
|
|
****************************************************************/
|
|
private["_npc","_time"];
|
|
|
|
_npc = _this select 0;
|
|
|
|
_npc fire "SmokeLauncher";
|
|
_time = time + 20;
|
|
(group _npc) setvariable ["UPSMON_SmokeTime",_time];
|