Cook Off - Change Cook Off events to global and add to events docs

This commit is contained in:
Björn Dahlgren 2020-01-08 00:25:52 +01:00
parent e1221f2bdd
commit 941d46b334
4 changed files with 10 additions and 3 deletions

View File

@ -21,7 +21,7 @@ if (_vehicle getVariable [QGVAR(isCookingOff), false]) exitWith {};
_vehicle setVariable [QGVAR(isCookingOff), true]; _vehicle setVariable [QGVAR(isCookingOff), true];
if (local _vehicle) then { if (local _vehicle) then {
[QGVAR(cookOff), _vehicle] call CBA_fnc_remoteEvent; [QGVAR(cookOff), _vehicle] call CBA_fnc_globalEvent;
}; };
[{ [{

View File

@ -21,7 +21,7 @@ if (_box getVariable [QGVAR(isCookingOff), false]) exitWith {};
_box setVariable [QGVAR(isCookingOff), true]; _box setVariable [QGVAR(isCookingOff), true];
if (local _box) then { if (local _box) then {
[QGVAR(cookOffBox), _box] call CBA_fnc_remoteEvent; [QGVAR(cookOffBox), _box] call CBA_fnc_globalEvent;
}; };
[{ [{

View File

@ -21,7 +21,7 @@ if (_vehicle getVariable [QGVAR(isEngineSmoking), false]) exitWith {};
_vehicle setVariable [QGVAR(isEngineSmoking), true]; _vehicle setVariable [QGVAR(isEngineSmoking), true];
if (local _vehicle) then { if (local _vehicle) then {
[QGVAR(engineFire), _vehicle] call CBA_fnc_remoteEvent; [QGVAR(engineFire), _vehicle] call CBA_fnc_globalEvent;
}; };
private _offset = getArray (_vehicle call CBA_fnc_getObjectConfig >> QGVAR(engineSmokeOffset)); private _offset = getArray (_vehicle call CBA_fnc_getObjectConfig >> QGVAR(engineSmokeOffset));

View File

@ -97,6 +97,13 @@ MenuType: 0 = Interaction, 1 = Self Interaction
|`ace_refuel_tick` | [_source, _target, _amount] | Local | Listen | Amount of fuel transferred in a tick |`ace_refuel_tick` | [_source, _target, _amount] | Local | Listen | Amount of fuel transferred in a tick
|`ace_refuel_stopped` | [_source, _target] | Local | Listen | Refueling has stopped |`ace_refuel_stopped` | [_source, _target] | Local | Listen | Refueling has stopped
### 2.10 Cook Off (`ace_cookoff`)
| Event Key | Parameters | Locality | Type | Description |
|----------|---------|---------|---------|---------|---------|
|`ace_cookoff_cookOff` | [_vehicle] | Global | Listen | Vehicle cook off has started
|`ace_cookoff_cookOffBox` | [_box] | Global | Listen | Ammo box cook off has started
|`ace_cookoff_engineFire` | [_vehicle] | Global | Listen | Engine fire has started
## 3. Usage ## 3. Usage
Also Reference [CBA Events System](https://github.com/CBATeam/CBA_A3/wiki/Custom-Events-System){:target="_blank"} documentation. Also Reference [CBA Events System](https://github.com/CBATeam/CBA_A3/wiki/Custom-Events-System){:target="_blank"} documentation.