mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
60 lines
918 B
Plaintext
60 lines
918 B
Plaintext
/*
|
|
* Author: Garth 'L-H' de Wet
|
|
* Initialises the explosives system
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* None
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
ADDON = false;
|
|
|
|
PREP(addCellphoneIED);
|
|
PREP(addClacker);
|
|
PREP(addToSpeedDial);
|
|
PREP(canDefuse);
|
|
PREP(canDetonate);
|
|
PREP(defuseExplosive);
|
|
PREP(detonateExplosive);
|
|
PREP(dialPhone);
|
|
PREP(dialingPhone);
|
|
|
|
PREP(handleScrollWheel);
|
|
|
|
PREP(hasExplosives);
|
|
PREP(hasPlacedExplosives);
|
|
|
|
PREP(getDetonators);
|
|
PREP(getPlacedExplosives);
|
|
PREP(getSpeedDialExplosive);
|
|
|
|
PREP(openDetonateUI);
|
|
PREP(openPlaceUI);
|
|
PREP(openTransmitterUI);
|
|
PREP(openTimerSetUI);
|
|
PREP(openTriggerSelectionUI);
|
|
|
|
PREP(place_Approve);
|
|
PREP(place_Cancel);
|
|
|
|
PREP(placeExplosive);
|
|
PREP(removeFromSpeedDial);
|
|
|
|
PREP(selectTrigger);
|
|
PREP(setupExplosive);
|
|
PREP(setPosition);
|
|
PREP(setSpeedDial);
|
|
PREP(startDefuse);
|
|
PREP(startTimer);
|
|
PREP(triggerType);
|
|
|
|
ADDON = true;
|