File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,42 +2,42 @@ class CfgUserActions {
22 class GVAR (action) {
33 displayName = CSTRING (Keybind_AIOAction);
44 tooltip = " " ;
5- onActivate = QUOTE (KEY_CODE (action));
5+ onActivate = QUOTE (call KEY_CODE (action));
66 onDeactivate = " " ;
77 onAnalog = " " ;
88 };
99 class GVAR (climb) {
1010 displayName = CSTRING (Keybind_ClimbDropOnly);
1111 tooltip = " " ;
12- onActivate = QUOTE (KEY_CODE (climb));
12+ onActivate = QUOTE (call KEY_CODE (climb));
1313 onDeactivate = " " ;
1414 onAnalog = " " ;
1515 };
1616 class GVAR (jump) {
1717 displayName = CSTRING (Keybind_JumpOnly);
1818 tooltip = " " ;
19- onActivate = QUOTE (KEY_CODE (jump));
19+ onActivate = QUOTE (call KEY_CODE (jump));
2020 onDeactivate = " " ;
2121 onAnalog = " " ;
2222 };
2323 class GVAR (assist) {
2424 displayName = CSTRING (Keybind_Assist);
2525 tooltip = " " ;
26- onActivate = QUOTE (KEY_CODE (assist));
26+ onActivate = QUOTE (call KEY_CODE (assist));
2727 onDeactivate = " " ;
2828 onAnalog = " " ;
2929 };
3030 class GVAR (holster) {
3131 displayName = CSTRING (Keybind_HolsterWeapon);
3232 tooltip = " " ;
33- onActivate = QUOTE (KEY_CODE (holster));
33+ onActivate = QUOTE (call KEY_CODE (holster));
3434 onDeactivate = " " ;
3535 onAnalog = " " ;
3636 };
3737 class GVAR (interact) {
3838 displayName = CSTRING (Keybind_Interact);
3939 tooltip = " " ;
40- onActivate = QUOTE (KEY_CODE (interact));
40+ onActivate = QUOTE (call KEY_CODE (interact));
4141 onDeactivate = " " ;
4242 onAnalog = " " ;
4343 };
You can’t perform that action at this time.
0 commit comments