mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
42 lines
1.0 KiB
Plaintext
42 lines
1.0 KiB
Plaintext
/*
|
|
* Author: Glowbal
|
|
* N/A
|
|
*
|
|
* Arguments:
|
|
* ?
|
|
*
|
|
* Return Value:
|
|
* ?
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_id", "_accepted"];
|
|
|
|
private ["_requestID", "_info", "_callBack", "_caller", "_replyParams", "_requestMessage", "_target"];
|
|
|
|
_info = _unit getvariable _id;
|
|
|
|
if (!isnil "_info") then {
|
|
_caller = _info select 0;
|
|
_target = _info select 1;
|
|
_requestID = _info select 2;
|
|
_requestMessage = _info select 3;
|
|
_callBack = _info select 4;
|
|
_replyParams = [_info, _accepted];
|
|
[_replyParams, QFUNC(requestCallback), _caller, false] call FUNC(execRemoteFnc);
|
|
_unit setvariable [_id, nil];
|
|
};
|
|
|
|
GVAR(RECIEVE_REQUEST_ID_KEY_BINDING) = nil;
|
|
|
|
if (!isnil QGVAR(RECIEVE_REQUEST_ADD_ACTION_ACCEPT)) then {
|
|
_unit removeAction GVAR(RECIEVE_REQUEST_ADD_ACTION_ACCEPT);
|
|
GVAR(RECIEVE_REQUEST_ADD_ACTION_ACCEPT) = nil;
|
|
};
|
|
if (!isnil QGVAR(RECIEVE_REQUEST_ADD_ACTION_DECLINE)) then {
|
|
_unit removeAction GVAR(RECIEVE_REQUEST_ADD_ACTION_DECLINE);
|
|
GVAR(RECIEVE_REQUEST_ADD_ACTION_DECLINE) = nil;
|
|
};
|