mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
11 lines
230 B
Plaintext
11 lines
230 B
Plaintext
|
//fnc_m137_keyUp.sqf
|
||
|
#include "script_component.hpp"
|
||
|
PARAMS_4(_ctrl,_code,_shift,_ctrl);
|
||
|
|
||
|
_code = _this select 1;
|
||
|
if(_code == 0x2A) then {
|
||
|
GVAR(m137_shift) = false;
|
||
|
};
|
||
|
if(_code == 29) then {
|
||
|
GVAR(m137_ctrl) = false;
|
||
|
};
|