mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
349 B
Plaintext
21 lines
349 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Become Leader of group.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player] call ace_interaction_fnc_doBecomeLeader
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
["selectLeader", units group _unit, [group _unit, _unit]] call EFUNC(common,targetEvent);
|