ACE3/addons/common/functions/fnc_requestCallback.sqf

23 lines
380 B
Plaintext
Raw Normal View History

#include "script_component.hpp"
2015-09-19 17:40:56 +00:00
/*
* Author: Glowbal
* N/A
2015-01-16 23:21:47 +00:00
*
2015-09-19 17:40:56 +00:00
* Arguments:
* ? <UNKNOWN>
2015-09-19 17:40:56 +00:00
*
* Return Value:
* ? <UNKNOWN>
*
* Example:
* [bob] call ace_common_fnc_requestCallback
2015-09-19 17:40:56 +00:00
*
* Public: No
2015-01-16 23:21:47 +00:00
*/
2015-09-19 17:40:56 +00:00
params ["_info", "_accepted"];
2015-01-16 23:21:47 +00:00
2015-09-19 17:40:56 +00:00
_info params ["_caller", "_target", "_requestID", "_requestMessage", "_callBack"];
2015-01-16 23:21:47 +00:00
2015-09-19 17:40:56 +00:00
[_caller, _target, _accepted] call compile _callBack;