mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
681 B
Plaintext
31 lines
681 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Remove the line marker
|
|
*
|
|
* Arguments:
|
|
* 0: Marker Name <STRING>
|
|
*
|
|
* Return value:
|
|
* Return
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_name"];
|
|
|
|
deleteMarkerLocal _name;
|
|
{
|
|
if ((_x select 0) == _name) exitWith {
|
|
GVAR(drawing_lineMarkers) = GVAR(drawing_lineMarkers) - [_x];
|
|
};
|
|
} forEach GVAR(drawing_lineMarkers);
|
|
|
|
if (isServer && GVAR(drawing_syncMarkers)) then {
|
|
{
|
|
if ((_x select 0) == _name) exitWith {
|
|
GVAR(drawing_serverLineMarkers) = GVAR(drawing_serverLineMarkers) - [_x];
|
|
publicVariable QGVAR(drawing_serverLineMarkers);
|
|
};
|
|
} forEach GVAR(drawing_serverLineMarkers);
|
|
};
|