mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9cfa2f11d9
Arguments, Return Value, (optional)
18 lines
304 B
Plaintext
18 lines
304 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
*
|
|
* Send Map markers to other player
|
|
*
|
|
* Arguments:
|
|
* 0: Target player (Unit)
|
|
*
|
|
* Return Value:
|
|
* Return
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["_requester"];
|
|
|
|
["drawing_sendbackMarkers", _requester, [GVAR(drawing_lineMarkers)]] call EFUNC(common,targetEvent);
|