mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fcfe278f7f
* markers - add setting allowing only marker creator to move * shorten setting display names * delete some whitespace, superfluous command * single arg needs no array * delete some whitespace * don't save directPlayID default value * Save array of user placed markers
25 lines
832 B
Plaintext
25 lines
832 B
Plaintext
[
|
|
QGVAR(moveRestriction), "LIST",
|
|
[LSTRING(MoveRestriction), LSTRING(MoveRestriction_Description)],
|
|
[format ["ACE %1", localize ELSTRING(map,Module_DisplayName)], localize LSTRING(Module_DisplayName)],
|
|
[
|
|
[
|
|
MOVE_RESTRICTION_NOBODY,
|
|
MOVE_RESTRICTION_ALL,
|
|
MOVE_RESTRICTION_ADMINS,
|
|
MOVE_RESTRICTION_GROUP_LEADERS,
|
|
MOVE_RESTRICTION_GROUP_LEADERS_ADMINS,
|
|
MOVE_RESTRICTION_OWNER
|
|
],
|
|
[
|
|
LSTRING(MoveRestriction_Nobody),
|
|
LSTRING(MoveRestriction_All),
|
|
LSTRING(MoveRestriction_Admins),
|
|
LSTRING(MoveRestriction_GroupLeaders),
|
|
LSTRING(MoveRestriction_GroupLeadersAndAdmins),
|
|
LSTRING(MoveRestriction_Owner)
|
|
],
|
|
1
|
|
]
|
|
] call cba_settings_fnc_init;
|