mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fixed incorrect indenting with headers in explosives.
This commit is contained in:
parent
eafc9e659c
commit
2440e4fa69
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* XEH_postInit.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Initialises the player object for the explosive system.
|
* Initialises the player object for the explosive system.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* XEH_preInit.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Initialises the explosives system
|
* Initialises the explosives system
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_addClacker.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Adds an explosive as a clacker item to the passed unit if the unit has the required item.
|
* Adds an explosive as a clacker item to the passed unit if the unit has the required item.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_canDefuse.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Whether a unit can perform the defuse action
|
* Whether a unit can perform the defuse action
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_canDetonate.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Whether the unit is able to detonate explosives
|
* Whether the unit is able to detonate explosives
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_defuseExplosive.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Causes the unit to defuse the passed explosive.
|
* Causes the unit to defuse the passed explosive.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_detonateExplosive.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Causes the unit to defuse the passed explosive.
|
* Causes the unit to defuse the passed explosive.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_getDetonators.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Returns all the detonators of the unit
|
* Returns all the detonators of the unit
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_getPlacedExplosives.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Gets all placed explosives by unit, optionally filtered by specific trigger type.
|
* Gets all placed explosives by unit, optionally filtered by specific trigger type.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_handleScrollWheel.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Handles rotating of Explosives
|
* Handles rotating of Explosives
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_hasExplosives.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Whether the passed unit has any explosives on them.
|
* Whether the passed unit has any explosives on them.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_hasPlacedExplosives.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Whether the passed unit has placed any explosives or has a clacker that was used when explosives were placed.
|
* Whether the passed unit has placed any explosives or has a clacker that was used when explosives were placed.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_module.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Initialises the explosives module
|
* Initialises the explosives module
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_openDetonateUI.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Opens the UI for explosive detonation selection
|
* Opens the UI for explosive detonation selection
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_openPlaceUI.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Opens the UI for explosive placement selection
|
* Opens the UI for explosive placement selection
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_openTimerSetUI.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Opens the UI for timer setting of an explosive
|
* Opens the UI for timer setting of an explosive
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_openTransmitterUI.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Opens the UI for selecting the transmitter
|
* Opens the UI for selecting the transmitter
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_openTriggerSelectionUI.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Opens the UI for explosive trigger selection
|
* Opens the UI for explosive trigger selection
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_placeExplosive.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Places an explosive at the requested position
|
* Places an explosive at the requested position
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_place_Approve.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Approves placement of the explosive, releases the placement object for it
|
* Approves placement of the explosive, releases the placement object for it
|
||||||
* to settle in a location suitable for the explosive to be created.
|
* to settle in a location suitable for the explosive to be created.
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_place_Cancel.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Cancels placement of the explosive
|
* Cancels placement of the explosive
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_selectTrigger.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Selects a trigger for an explosive.
|
* Selects a trigger for an explosive.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_setPosition.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Sets the Dir and pitch of passed object
|
* Sets the Dir and pitch of passed object
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_setupExplosive.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Starts the setup process for the passed explosive. Player only.
|
* Starts the setup process for the passed explosive. Player only.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_startDefuse.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Starts defusing an explosive
|
* Starts defusing an explosive
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_startTimer.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Starts a timer for an explosive.
|
* Starts a timer for an explosive.
|
||||||
*
|
*
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
/*
|
/*
|
||||||
* fnc_triggerType.sqf
|
|
||||||
*
|
|
||||||
* Author: Garth 'L-H' de Wet
|
* Author: Garth 'L-H' de Wet
|
||||||
* Gets the types of triggers associated with the explosive
|
* Gets the types of triggers associated with the explosive
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user