mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
490 B
Plaintext
24 lines
490 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Function for the module (handles the map fill level)
|
|
*
|
|
* Arguments:
|
|
* 0: logic <OBJECT>
|
|
* 1: synced units-not used <ARRAY>
|
|
* 2: Module Activated <BOOL>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [module, [], true] call ace_microdagr_fnc_moduleMapFill
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if !(isServer) exitWith {};
|
|
params ["_logic", "_syncedUnits", "_activated"];
|
|
|
|
if (!_activated) exitWith {WARNING("Module Placed but not active");};
|