2019-02-24 19:36:50 +00:00
|
|
|
#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
|
|
|
|
*/
|
|
|
|
|
2019-02-24 20:03:54 +00:00
|
|
|
(isNil QGVAR(zeus)) && {
|
2019-02-24 19:36:50 +00:00
|
|
|
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};
|
|
|
|
}
|
|
|
|
}
|