mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22 lines
393 B
Plaintext
22 lines
393 B
Plaintext
/*
|
|
* Author: Dslyecxi, MikeMatrix
|
|
* Ensure that all variables used to indicate transmission are disabled.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_map_gestures_fnc_endTransmit
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if (!GVAR(enabled)) exitWith {};
|
|
|
|
ACE_player setVariable [QGVAR(Transmit), false, true];
|
|
GVAR(EnableTransmit) = false;
|