mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
e2ac18a05d
* advanced_ballistics * advanced_fatigue * advanced_throwing * ai * aircraft * arsenal * atragmx * attach * backpacks * ballistics * captives * cargo * chemlights * common * concertina_wire * cookoff * dagr * disarming * disposable * dogtags * dragging * explosives * fastroping * fcs * finger * frag * gestures * gforces * goggles * grenades * gunbag * hearing * hitreactions * huntir * interact_menu * interaction * inventory * kestrel4500 * laser * laserpointer * logistics_uavbattery * logistics_wirecutter * magazinerepack * map * map_gestures * maptools * markers * medical * medical_ai * medical_blood * medical_menu * microdagr * minedetector * missileguidance * missionmodules * mk6mortar * modules * movement * nametags * nightvision * nlaw * optics * optionsmenu * overheating * overpressure * parachute * pylons * quickmount * rangecard * rearm * recoil * refuel * reload * reloadlaunchers * repair * respawn * safemode * sandbag * scopes * slideshow * spectator * spottingscope * switchunits * tacticalladder * tagging * trenches * tripod * ui * vector * vehiclelock * vehicles * viewdistance * weaponselect * weather * winddeflection * yardage450 * zeus * arsenal defines.hpp * optionals * DEBUG_MODE_FULL 1 * DEBUG_MODE_FULL 2 * Manual fixes * Add SQF Validator check for #include after block comment * explosives fnc_openTimerUI * fix uniqueItems
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* 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
|
|
*/
|
|
|
|
params ["_args", "_pfID"];
|
|
_args params ["_unit", "_i", "_arr", "_code"];
|
|
|
|
if ((_i mod 4) == 0) then {
|
|
playSound3D [QUOTE(PATHTO_R(Data\Audio\DialTone.wss)), objNull, false, (_unit modelToWorldVisual [0,0.2,2]), 15,1,2.5];
|
|
};
|
|
ctrlSetText [1400,format["Calling%1",_arr select (_i - 4)]];
|
|
|
|
private _explosive = [_code] call FUNC(getSpeedDialExplosive);
|
|
|
|
if (_i >= (count _arr + 2)) then {
|
|
[_pfID] call CALLSTACK(CBA_fnc_removePerFrameHandler);
|
|
if ((count _explosive) > 0) then {
|
|
[_unit, -1, [_explosive select 0, _explosive select 2], "ACE_Cellphone"] call FUNC(detonateExplosive);
|
|
};
|
|
_unit setVariable [QGVAR(Dialing), false, true];
|
|
if (_unit == ace_player) then {
|
|
ctrlSetText [1400,"Call Ended!"];
|
|
};
|
|
};
|
|
if (_i == (count _arr)) then {
|
|
if ((count _explosive) > 0) then {
|
|
playSound3D [QUOTE(PATHTO_R(Data\Audio\Cellphone_Ring.wss)),objNull, false, getPosASL (_explosive select 0),3.16228,1,75];
|
|
};
|
|
};
|
|
_args set [1, _i + 1];
|