2015-02-19 10:32:41 +00:00
|
|
|
/*
|
|
|
|
* Author: Garth 'L-H' de Wet
|
|
|
|
* Performs the dial tones and detonation of explosive.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Unit to do dialing <OBJECT>
|
|
|
|
* 1: Index <NUMBER>
|
|
|
|
* 2: Dialing points <ARRAY>
|
|
|
|
* 3: IED code <STRING>
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* [FUNC(dialingPhone), 0.25, [_unit,4,_arr,_code]] call CALLSTACK(CBA_fnc_addPerFrameHandler);
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
2015-08-15 19:35:33 +00:00
|
|
|
|
|
|
|
params ["_args", "_pfID"];
|
|
|
|
_args params ["_unit", "_i", "_arr", "_code"];
|
|
|
|
|
2015-02-19 10:32:41 +00:00
|
|
|
if ((_i mod 4) == 0) then {
|
2015-04-03 22:26:27 +00:00
|
|
|
playSound3D [QUOTE(PATHTO_R(Data\Audio\DialTone.wss)), objNull, false, (_unit modelToWorldVisual [0,0.2,2]), 15,1,2.5];
|
2015-02-19 10:32:41 +00:00
|
|
|
};
|
|
|
|
ctrlSetText [1400,format["Calling%1",_arr select (_i - 4)]];
|
2015-02-19 10:39:13 +00:00
|
|
|
|
|
|
|
private "_explosive";
|
2015-02-19 13:59:14 +00:00
|
|
|
_explosive = [_code] call FUNC(getSpeedDialExplosive);
|
2015-02-19 10:39:13 +00:00
|
|
|
|
2015-02-19 10:32:41 +00:00
|
|
|
if (_i >= (count _arr + 2)) then {
|
2015-11-30 15:45:20 +00:00
|
|
|
[_pfID] call CALLSTACK(CBA_fnc_removePerFrameHandler);
|
2015-02-19 13:59:14 +00:00
|
|
|
if ((count _explosive) > 0) then {
|
2015-02-19 10:39:13 +00:00
|
|
|
[_unit, -1, [_explosive select 0, _explosive select 2]] call FUNC(detonateExplosive);
|
2015-02-19 10:32:41 +00:00
|
|
|
};
|
|
|
|
_unit setVariable [QGVAR(Dialing), false, true];
|
|
|
|
if (_unit == ace_player) then {
|
|
|
|
ctrlSetText [1400,"Call Ended!"];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
if (_i == (count _arr)) then {
|
2015-02-19 13:59:14 +00:00
|
|
|
if ((count _explosive) > 0) then {
|
|
|
|
playSound3D [QUOTE(PATHTO_R(Data\Audio\Cellphone_Ring.wss)),objNull, false, getPosASL (_explosive select 0),3.16228,1,75];
|
2015-02-19 10:32:41 +00:00
|
|
|
};
|
|
|
|
};
|
2015-08-15 19:35:33 +00:00
|
|
|
_args set [1, _i + 1];
|