mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
27 lines
594 B
Plaintext
27 lines
594 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror
|
|
* Modifies the ACE_JoinGroup action to show group name.
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
* 1: Player <OBJECT>
|
|
* 2: Args <ANY>
|
|
* 3: Action Data <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [cursorObject, player, [], []] call ace_interaction_fnc_modifyJoinGroupAction
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_target", "_player", "", "_actionData"];
|
|
|
|
private _actionText = format ["%1: %2", localize LSTRING(JoinGroup), groupID group _target];
|
|
TRACE_3("",_target,group _target,_actionText);
|
|
|
|
_actionData set [1, _actionText];
|