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
22 lines
345 B
Plaintext
22 lines
345 B
Plaintext
/*
|
|
* Author: ACE
|
|
* Not currently used
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
* 1: Args <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [target, [args]] call ace_missileguidance_fnc_doHandoff
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
params ["_target", "_args"];
|
|
|
|
[QGVAR(handoff), [_target, _args]] call CBA_fnc_globalEvent;
|