From fb2f3f8c3fcc2b14279df9517369779a580a40ff Mon Sep 17 00:00:00 2001 From: ulteq Date: Thu, 4 Jun 2015 17:51:04 +0200 Subject: [PATCH] Added function headers / Fixed requiredAddons --- addons/concertina_wire/config.cpp | 2 +- addons/concertina_wire/functions/fnc_deploy.sqf | 15 +++++++++++++++ addons/concertina_wire/functions/fnc_dismount.sqf | 15 +++++++++++++++ .../functions/fnc_dismountSuccess.sqf | 14 ++++++++++++++ .../functions/fnc_handleKilled.sqf | 15 +++++++++++++++ 5 files changed, 60 insertions(+), 1 deletion(-) diff --git a/addons/concertina_wire/config.cpp b/addons/concertina_wire/config.cpp index 927e413afb..f675283277 100644 --- a/addons/concertina_wire/config.cpp +++ b/addons/concertina_wire/config.cpp @@ -5,7 +5,7 @@ class CfgPatches { units[] = {}; weapons[] = {}; requiredVersion = REQUIRED_VERSION; - requiredAddons[] = {"ace_interaction"}; + requiredAddons[] = {"ace_apl", "ace_interaction"}; author[] = {"Rocko", "Ruthberg"}; VERSION_CONFIG; }; diff --git a/addons/concertina_wire/functions/fnc_deploy.sqf b/addons/concertina_wire/functions/fnc_deploy.sqf index c64fa47187..c30e767266 100644 --- a/addons/concertina_wire/functions/fnc_deploy.sqf +++ b/addons/concertina_wire/functions/fnc_deploy.sqf @@ -1,3 +1,18 @@ +/* + * Author: Rocko, Ruthberg + * + * Deploys the concertina wire + * + * Arguments: + * 0: wire coil + * 1: unit + * + * Return Value: + * Nothing + * + * Return value: + * None + */ #include "script_component.hpp" PARAMS_2(_wirecoil,_unit); diff --git a/addons/concertina_wire/functions/fnc_dismount.sqf b/addons/concertina_wire/functions/fnc_dismount.sqf index 00c4c4ea3a..c9a5d1f9ff 100644 --- a/addons/concertina_wire/functions/fnc_dismount.sqf +++ b/addons/concertina_wire/functions/fnc_dismount.sqf @@ -1,3 +1,18 @@ +/* + * Author: Ruthberg + * + * Start dismounting the concertina wire + * + * Arguments: + * 0: wire + * 1: unit + * + * Return Value: + * Nothing + * + * Return value: + * None + */ #include "script_component.hpp" // If the cursorMenu is open, the loading bar will fail. If we execute the function one frame later, it will work fine diff --git a/addons/concertina_wire/functions/fnc_dismountSuccess.sqf b/addons/concertina_wire/functions/fnc_dismountSuccess.sqf index 9b935cb1bb..a6e34fe44f 100644 --- a/addons/concertina_wire/functions/fnc_dismountSuccess.sqf +++ b/addons/concertina_wire/functions/fnc_dismountSuccess.sqf @@ -1,3 +1,17 @@ +/* + * Author: Rocko, Ruthberg + * + * Dismounts the concertina wire + * + * Arguments: + * 0: wire + * + * Return Value: + * Nothing + * + * Return value: + * None + */ #include "script_component.hpp" PARAMS_1(_wire); diff --git a/addons/concertina_wire/functions/fnc_handleKilled.sqf b/addons/concertina_wire/functions/fnc_handleKilled.sqf index 5954982118..9625dc1e95 100644 --- a/addons/concertina_wire/functions/fnc_handleKilled.sqf +++ b/addons/concertina_wire/functions/fnc_handleKilled.sqf @@ -1,3 +1,18 @@ +/* + * Author: Rocko + * + * Handles wire and vehicle damage + * + * Arguments: + * 0: wire + * 1: killer (vehicle) + * + * Return Value: + * Nothing + * + * Return value: + * None + */ #include "script_component.hpp" PARAMS_2(_wire,_killer);