mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
81e02a7336
* Everything * Fixed missing ; * Fix missing ; and double private * Fixed cannot isNull on number * Turn _temparture back to isNil * Fix error from merge
24 lines
448 B
Plaintext
24 lines
448 B
Plaintext
/*
|
|
* Author: ACE-Team
|
|
* Not currently used
|
|
*
|
|
* Arguments:
|
|
* 0: TARGET <OBJECT>
|
|
* 1: ARGS <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* Boolean <BOOLEAN>
|
|
*
|
|
* Example:
|
|
* [bob, kevin] call ACE_missileguidance_fnc_handleHandoff
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
params ["_target", "_args"];
|
|
|
|
if (isNil "_target" || {isNull _target} || {!local _target} ) exitWith { false };
|
|
|
|
[FUNC(guidancePFH), 0, _args] call CBA_fnc_addPerFrameHandler;
|