mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
22b4788891
* added movable markers option * added restrictions * added local events * formatting + small fixes * Events for start and end modified + small adjusts * minor fixes * lazy eval * Alt as modifier key * Update XEH_postInit.sqf * Skip UI EH on headless
18 lines
711 B
C++
18 lines
711 B
C++
class ACE_Settings {
|
|
class GVAR(movableMarkersEnabled) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 0;
|
|
typeName = "BOOL";
|
|
displayName = CSTRING(MovableMarkers_DisplayName);
|
|
description = CSTRING(MovableMarkers_Description);
|
|
};
|
|
class GVAR(moveRestriction) {
|
|
category = CSTRING(Module_DisplayName);
|
|
value = 0;
|
|
typeName = "SCALAR";
|
|
displayName = CSTRING(MoveRestriction_DisplayName);
|
|
description = CSTRING(MoveRestriction_Description);
|
|
values[] = {CSTRING(MoveRestriction_All), CSTRING(MoveRestriction_Admins), CSTRING(MoveRestriction_GroupLeaders), CSTRING(MoveRestriction_GroupLeadersAndAdmins)};
|
|
};
|
|
};
|