Sarge-AI/scripts/UPSMON/COMMON/Params/fnc/UPSMON_NOSMOKE.sqf
Teh Dango 3ac749d64b 2.1.0
This is the latest stable version of Sarge AI for Arma 3: Exile.
2016-02-19 21:49:51 -05:00

29 lines
517 B
Plaintext

/****************************************************************
File: UPSMON_BackToNormal.sqf
Author: Azroul13
Description:
Parameter(s):
<--- group
Returns:
Nothing
****************************************************************/
private["_grp","_nosmoke"];
_grp = _this select 0;
_nosmoke = true;
If (random 100 > UPSMON_USE_SMOKE) then
{
If (_grp getvariable ["UPSMON_SmokeTime",0] < time) then
{
If (!(_grp getvariable ["UPSMON_NOSMOKE",false])) then
{
_nosmoke = false;
};
};
};
_nosmoke