mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
24 lines
414 B
Plaintext
24 lines
414 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Checks if the unit can pardon the target.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Target <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Unit can pardon target <BOOL>
|
|
*
|
|
* Example:
|
|
* [bob, kevin] call ACE_interaction_fnc_canPardon
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_target"];
|
|
|
|
alive _target
|
|
&& {rating _target < -2000}
|
|
&& {side group _unit == side group _target}
|