mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
26 lines
559 B
Plaintext
26 lines
559 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Dystopian
|
|
* Check whether local player is currently allowed to create a Zeus Module
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* Allowed to create module <BOOL>
|
|
*
|
|
* Example:
|
|
* call ace_zeus_fnc_canCreateModule
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
(isNil QGVAR(zeus)) && {
|
|
switch (GVAR(canCreateZeus)) do {
|
|
case CAN_CREATE_ADMIN: {isServer || {IS_ADMIN_LOGGED}};
|
|
case CAN_CREATE_CONSOLE: {call BIS_fnc_isDebugConsoleAllowed};
|
|
case CAN_CREATE_ALL: {true};
|
|
default {false};
|
|
}
|
|
}
|