mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
872 B
Plaintext
29 lines
872 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Reads a setting value from a module, set it and force it. Logs if the setting is missing from the module.
|
|
* Must be called on the server, effect is global.
|
|
*
|
|
* Arguments:
|
|
* 0: Module <OBJECT>
|
|
* 1: ACE_Parameter name <STRING>
|
|
* 2: Module parameter name <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if !(isServer) exitWith {};
|
|
|
|
params ["_logic", "_settingName", "_moduleVariable"];
|
|
|
|
// Check if the parameter is defined in the module
|
|
if (isNil {_logic getVariable _moduleVariable}) exitWith {
|
|
ACE_LOGWARNING_2("Warning in %1 module: %2 setting is missing. Probably an obsolete version of the module is used in the mission.",typeOf _logic,_moduleVariable);
|
|
};
|
|
|
|
// Set the setting globally and force it
|
|
[_settingName, _logic getVariable _moduleVariable, true, true] call FUNC(setSetting);
|