ACE3/addons/interaction/functions/fnc_pardon.sqf

22 lines
343 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-09-28 15:20:56 +00:00
/*
* Author: commy2
* Unit pardons target unit.
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Target <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bob, kevin] call ACE_interaction_fnc_pardon
*
2015-09-28 15:20:56 +00:00
* Public: No
*/
params ["", "_target"];
2016-05-25 18:23:53 +00:00
[QGVAR(pardon), [_target], [_target]] call CBA_fnc_targetEvent;