mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
5e1771aecd
* Do not need to register keybinds on machines that don't have interfaces. * add newline --------- Co-authored-by: Grim <69561145+LinkIsGrim@users.noreply.github.com>
22 lines
550 B
Plaintext
22 lines
550 B
Plaintext
#include "script_component.hpp"
|
|
|
|
GVAR(RangeCardOpened) = false;
|
|
|
|
GVAR(controls) = [];
|
|
|
|
GVAR(zeroRange) = 100;
|
|
GVAR(boreHeight) = 3.81;
|
|
GVAR(ammoClass) = "B_65x39_Caseless";
|
|
GVAR(magazineClass) = "30Rnd_65x39_caseless_mag";
|
|
GVAR(weaponClass) = "arifle_MXM_F";
|
|
|
|
GVAR(zeroRangeCopy) = 100;
|
|
GVAR(boreHeightCopy) = 3.81;
|
|
GVAR(ammoClassCopy) = "";//"ACE_762x51_Ball_M118LR";
|
|
GVAR(magazineClassCopy) = "";//"ACE_20Rnd_762x51_M118LR_Mag";
|
|
GVAR(weaponClassCopy) = "";//srifle_DMR_06_olive_F";
|
|
|
|
if (!hasInterface) exitWith {};
|
|
|
|
#include "initKeybinds.inc.sqf"
|