diff --git a/addons/admin/functions/fnc_adminRefresh.sqf b/addons/admin/functions/fnc_adminRefresh.sqf index 5329f93..5e18483 100644 --- a/addons/admin/functions/fnc_adminRefresh.sqf +++ b/addons/admin/functions/fnc_adminRefresh.sqf @@ -1,14 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_admin_fnc_adminRefresh * Author: IDSolutions - * - * [Description] - * Refreshes the admin interface player list and resets input fields. - * This function populates the player list with names and paygrades, - * storing player UIDs as data for each entry. Only shows players - * on the same side as the admin. + * Refreshes the admin interface * * Arguments: * 0: Dummy - Optional parameter, not used (for compatibility with event handlers) @@ -20,10 +14,9 @@ * [] call forge_client_admin_fnc_adminRefresh; * ["dummy"] call forge_client_admin_fnc_adminRefresh; * - * Public: No - Called from admin dialog controls + * Public: No */ - private _dialog = findDisplay 202303; private _list = _dialog displayCtrl 2023001; diff --git a/addons/admin/functions/fnc_handleTransfer.sqf b/addons/admin/functions/fnc_handleTransfer.sqf index 9657581..6631d20 100644 --- a/addons/admin/functions/fnc_handleTransfer.sqf +++ b/addons/admin/functions/fnc_handleTransfer.sqf @@ -1,16 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_admin_fnc_handleTransfer * Author: IDSolutions - * - * [Description] - * Handles fund transfers through the admin interface. - * This function retrieves the selected player's UID and amount - * from the admin dialog, then sends it to the server-side admin store. - * Supports multiple transfer types: advance (to single player), - * deduct (from single player), advanceAll (to all players), - * and payday (distribute based on paygrade). + * Handles fund transfers * * Arguments: * 0: Condition - The type of transfer to perform ("advance", "deduct", "advanceAll", "payday") diff --git a/addons/admin/functions/fnc_sendMessage.sqf b/addons/admin/functions/fnc_sendMessage.sqf index ed1ec97..00bdfac 100644 --- a/addons/admin/functions/fnc_sendMessage.sqf +++ b/addons/admin/functions/fnc_sendMessage.sqf @@ -1,13 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_admin_fnc_sendMessage * Author: IDSolutions - * - * [Description] - * Sends a message to a selected player through the admin interface. - * This function retrieves the selected player's UID and message content - * from the admin dialog, then sends it to the server-side admin store. + * Sends a message to a selected player * * Arguments: * None diff --git a/addons/admin/functions/fnc_updatePaygrade.sqf b/addons/admin/functions/fnc_updatePaygrade.sqf index 3371354..36171ce 100644 --- a/addons/admin/functions/fnc_updatePaygrade.sqf +++ b/addons/admin/functions/fnc_updatePaygrade.sqf @@ -1,13 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_admin_fnc_updatePaygrade * Author: IDSolutions - * - * [Description] - * Updates a player's paygrade in the server's admin store. - * This function retrieves the selected player's UID and the target paygrade - * from the admin dialog, then sends it to the server-side admin store. + * Updates a player's paygrade * * Arguments: * None diff --git a/addons/ambient/functions/fnc_ambientSound.sqf b/addons/ambient/functions/fnc_ambientSound.sqf index 4fa77b2..0fbf8ee 100644 --- a/addons/ambient/functions/fnc_ambientSound.sqf +++ b/addons/ambient/functions/fnc_ambientSound.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_ambient_fnc_ambientSound - * Author: J.Schmidt - * - * [Description] - * Create a sound source and play an ambient sfx sound. + * Author: IDSolutions + * Create a sound source and play an ambient sfx sound * * Arguments: * 0: The sound source diff --git a/addons/arsenal/XEH_postInit.sqf b/addons/arsenal/XEH_postInit.sqf index 8e4c112..c7d091e 100644 --- a/addons/arsenal/XEH_postInit.sqf +++ b/addons/arsenal/XEH_postInit.sqf @@ -1,10 +1,10 @@ #include "script_component.hpp" [{ - GETVAR(player,value_loadDone,false) + GETVAR(player,EGVAR(player,done),false) }, { - private _armory_unlocks = player getVariable ["Armory_Unlocks", [[],[],[],[]]]; - private _garage_unlocks = player getVariable ["Garage_Unlocks", [[],[],[],[],[],[]]]; + private _armory_unlocks = GETVAR(player,Armory_Unlocks,GVAR(default_armory)); + private _garage_unlocks = GETVAR(player,Garage_Unlocks,GVAR(default_garage)); [_armory_unlocks, _garage_unlocks] call FUNC(initArsenal); }] call CFUNC(waitUntilAndExecute); \ No newline at end of file diff --git a/addons/arsenal/XEH_preInit.sqf b/addons/arsenal/XEH_preInit.sqf index 6dffad2..f8c6e11 100644 --- a/addons/arsenal/XEH_preInit.sqf +++ b/addons/arsenal/XEH_preInit.sqf @@ -7,6 +7,16 @@ PREP_RECOMPILE_END; GVAR(armory_unlocks) = []; GVAR(garage_unlocks) = []; + +GVAR(car_unlocks) = []; +GVAR(armor_unlocks) = []; +GVAR(heli_unlocks) = []; +GVAR(plane_unlocks) = []; +GVAR(naval_unlocks) = []; +GVAR(static_unlocks) = []; + +GVAR(default_armory) = [[],[],[],[]]; +GVAR(default_garage) = [[],[],[],[],[],[]]; GVAR(pdb_mode) = "PDB_MODE" call BFUNC(getParamValue); GVAR(armory_type) = "ARS_TYPE" call BFUNC(getParamValue); GVAR(gear_box) = "ReammoBox_F" createVehicleLocal [0, 0, -999]; diff --git a/addons/arsenal/functions/fnc_addArmoryItem.sqf b/addons/arsenal/functions/fnc_addArmoryItem.sqf index 7eb4e40..10c685b 100644 --- a/addons/arsenal/functions/fnc_addArmoryItem.sqf +++ b/addons/arsenal/functions/fnc_addArmoryItem.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_addArmoryItem * Author: IDSolutions - * - * [Description] * Adds item to player's armory unlocks and updates virtual arsenal * * Arguments: @@ -22,9 +19,7 @@ params [["_class", "", [""]], ["_type", "", [""]]]; -private _default = [[],[],[],[]]; -private _armory_unlocks = GETVAR(player,Armory_Unlocks,_default); - +private _armory_unlocks = GETVAR(player,Armory_Unlocks,GVAR(default_armory)); private _typeToNumber = switch (_type) do { case "facewear"; case "headgear"; @@ -48,8 +43,7 @@ if (_index > -1) then { } else { [GVAR(gear_box), [_class]] call AFUNC(arsenal,addVirtualItems); }; - - TRACE_2("Item added to armory",_class,_type); + true } else { false diff --git a/addons/arsenal/functions/fnc_addGarageVehicle.sqf b/addons/arsenal/functions/fnc_addGarageVehicle.sqf index 4bf46c5..6ef8366 100644 --- a/addons/arsenal/functions/fnc_addGarageVehicle.sqf +++ b/addons/arsenal/functions/fnc_addGarageVehicle.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_addGarageVehicle * Author: IDSolutions - * - * [Description] * Adds vehicle to player's garage unlocks and updates virtual garage * * Arguments: @@ -22,10 +19,7 @@ params [["_class", "", [""]], ["_type", "", [""]]]; -private _default = [[],[],[],[],[],[]]; -// private _garage_unlocks = player getVariable ["Garage_Unlocks", _default]; -private _garage_unlocks = GETVAR(player,Garage_Unlocks,_default); - +private _garage_unlocks = GETVAR(player,Garage_Unlocks,GVAR(default_garage)); private _typeToNumber = switch (_type) do { case "car": {0}; case "armor": {1}; @@ -39,11 +33,9 @@ private _typeToNumber = switch (_type) do { private _index = (_garage_unlocks select _typeToNumber) pushBackUnique _class; if (_index > -1) then { - // player setVariable ["Garage_Unlocks", _garage_unlocks, true]; SETPVAR(player,Garage_Unlocks,_garage_unlocks); [[_class]] call FUNC(addVirtualVehicles); - - TRACE_2("Vehicle added to garage",_class,_type); + true } else { false diff --git a/addons/arsenal/functions/fnc_addVirtualVehicles.sqf b/addons/arsenal/functions/fnc_addVirtualVehicles.sqf index e38432c..6ade25e 100644 --- a/addons/arsenal/functions/fnc_addVirtualVehicles.sqf +++ b/addons/arsenal/functions/fnc_addVirtualVehicles.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_addVirtualVehicles * Author: IDSolutions - * - * [Description] * Adds vehicles to virtual garage and categorizes them by type * * Arguments: @@ -21,15 +18,8 @@ params [["_vehicles", [], [[]]]]; -private _default = [[],[],[],[],[],[]]; -private _garage_unlocks = GETVAR(player,Garage_Unlocks,_default); - -private _cars = _garage_unlocks select 0; -private _armor = _garage_unlocks select 1; -private _helis = _garage_unlocks select 2; -private _planes = _garage_unlocks select 3; -private _naval = _garage_unlocks select 4; -private _static = _garage_unlocks select 5; +private _garage_unlocks = GETVAR(player,Garage_Unlocks,GVAR(default_garage)); +_garage_unlocks params ["_cars", "_armor", "_helis", "_planes", "_naval", "_static"]; { switch true do { @@ -37,31 +27,14 @@ private _static = _garage_unlocks select 5; if ((_x isKindOf "Tank") || (_x isKindOf "Wheeled_APC_F")) exitWith {}; _cars pushBackUnique _x; }; - case (_x isKindOf "Tank"): { - _armor pushBackUnique _x; - }; - case (_x isKindOf "Helicopter"): { - _helis pushBackUnique _x; - }; - case (_x isKindOf "Plane"): { - _planes pushBackUnique _x; - }; - case (_x isKindOf "Ship"): { - _naval pushBackUnique _x; - }; - case (_x isKindOf "Static"): { - _static pushBackUnique _x; - }; + case (_x isKindOf "Tank"): { _armor pushBackUnique _x; }; + case (_x isKindOf "Helicopter"): { _helis pushBackUnique _x; }; + case (_x isKindOf "Plane"): { _planes pushBackUnique _x; }; + case (_x isKindOf "Ship"): { _naval pushBackUnique _x; }; + case (_x isKindOf "Static"): { _static pushBackUnique _x; }; }; } forEach _vehicles; -GVAR(car_unlocks) = []; -GVAR(armor_unlocks) = []; -GVAR(heli_unlocks) = []; -GVAR(plane_unlocks) = []; -GVAR(naval_unlocks) = []; -GVAR(static_unlocks) = []; - { GVAR(car_unlocks) append [getText(configFile >> "CfgVehicles" >> _x >> "model"),[configFile >> "CfgVehicles" >> _x]]; } forEach _cars; @@ -84,6 +57,4 @@ GVAR(static_unlocks) = []; { GVAR(static_unlocks) append [getText(configFile >> "CfgVehicles" >> _x >> "model"),[configFile >> "CfgVehicles" >> _x]]; -} forEach _static; - -TRACE_1("Virtual vehicles updated",count _vehicles); \ No newline at end of file +} forEach _static; \ No newline at end of file diff --git a/addons/arsenal/functions/fnc_initArsenal.sqf b/addons/arsenal/functions/fnc_initArsenal.sqf index 8dadd56..8539354 100644 --- a/addons/arsenal/functions/fnc_initArsenal.sqf +++ b/addons/arsenal/functions/fnc_initArsenal.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_initArsenal * Author: IDSolutions - * - * [Description] * Initializes the arsenal system with armory and garage data * * Arguments: @@ -20,11 +17,8 @@ params [["_armory_data", [], [[]]], ["_garage_data", [], [[]]]]; -private _defaultArmory = [[],[],[],[]]; -private _defaultGarage = [[],[],[],[],[],[]]; - -if (!(_armory_data isEqualTypeArray _defaultArmory) || (count _armory_data != 4)) then { _armory_data = _defaultArmory; }; -if (!(_garage_data isEqualTypeArray _defaultGarage) || (count _garage_data != 6)) then { _garage_data = _defaultGarage; }; +if (!(_armory_data isEqualTypeArray GVAR(default_armory)) || (count _armory_data != 4)) then { _armory_data = GVAR(default_armory); }; +if (!(_garage_data isEqualTypeArray GVAR(default_garage)) || (count _garage_data != 6)) then { _garage_data = GVAR(default_garage); }; if (GVAR(armory_type) == 0) then { { [GVAR(gear_box), _x, false, true, 1, _forEachIndex] call BFUNC(addVirtualItemCargo); @@ -55,9 +49,4 @@ GVAR(static_unlocks) = _statics; { [_x] call FUNC(addVirtualVehicles); -} forEach GVAR(garage_unlocks); - -private _armoryCount = count (_armory_data select { count _x > 0 }); -private _garageCount = count (_garage_data select { count _x > 0 }); - -TRACE_2("Arsenal System Initialized",_armoryCount,_garageCount); \ No newline at end of file +} forEach GVAR(garage_unlocks); \ No newline at end of file diff --git a/addons/arsenal/functions/fnc_openArmory.sqf b/addons/arsenal/functions/fnc_openArmory.sqf index b69bb98..d63491e 100644 --- a/addons/arsenal/functions/fnc_openArmory.sqf +++ b/addons/arsenal/functions/fnc_openArmory.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_openArmory * Author: IDSolutions - * - * [Description] - * Opens the arsenal system + * Opens the virtual arsenal * * Arguments: * None diff --git a/addons/arsenal/functions/fnc_openGarage.sqf b/addons/arsenal/functions/fnc_openGarage.sqf index 3cf977d..9cfaf67 100644 --- a/addons/arsenal/functions/fnc_openGarage.sqf +++ b/addons/arsenal/functions/fnc_openGarage.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_openGarage * Author: IDSolutions - * - * [Description] - * Opens the garage system + * Opens the virtual garage * * Arguments: * None diff --git a/addons/arsenal/functions/fnc_saveUnlocks.sqf b/addons/arsenal/functions/fnc_saveUnlocks.sqf index a195a6d..e7861c2 100644 --- a/addons/arsenal/functions/fnc_saveUnlocks.sqf +++ b/addons/arsenal/functions/fnc_saveUnlocks.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_saveUnlocks * Author: IDSolutions - * - * [Description] * Saves arsenal/garage unlocks to appropriate storage based on persistence mode * * Arguments: @@ -23,20 +20,16 @@ params [["_type", "", [""]]]; switch (_type) do { case "armory": { - private _default_armory_data = [[],[],[],[]]; - // private _armory_data = player getVariable ["Armory_Unlocks", [[],[],[],[]]]; - private _armory_data = GETVAR(player,Armory_Unlocks,_default_armory_data); + private _armory_data = GETVAR(player,Armory_Unlocks,GVAR(default_armory)); switch (GVAR(pdb_mode)) do { case 0: { - // profileNamespace setVariable ["Armory_Unlocks", _armory_data]; SETVAR(profileNamespace,Armory_Unlocks,_armory_data); }; case 1: { ["hsetid", getPlayerUID player, "armory_unlocks", -1, _armory_data, "", false] remoteExec ["dragonfly_db_fnc_addTask", 2, false]; }; default { - // profileNamespace setVariable ["Armory_Unlocks", _armory_data]; SETVAR(profileNamespace,Armory_Unlocks,_armory_data); }; }; @@ -45,26 +38,20 @@ switch (_type) do { }; case "garage": { - private _default_garage_data = [[],[],[],[],[],[]]; - // private _garage_data = player getVariable ["Garage_Unlocks", [[],[],[],[],[],[]]]; - private _garage_data = GETVAR(player,Garage_Unlocks,_default_garage_data); + private _garage_data = GETVAR(player,Garage_Unlocks,GVAR(default_garage)); switch (GVAR(pdb_mode)) do { case 0: { - // profileNamespace setVariable ["Garage_Unlocks", _garage_data]; SETVAR(profileNamespace,Garage_Unlocks,_garage_data); }; case 1: { ["hsetid", getPlayerUID player, "garage_unlocks", -1, _garage_data, "", false] remoteExec ["dragonfly_db_fnc_addTask", 2, false]; }; default { - // profileNamespace setVariable ["Garage_Unlocks", _garage_data]; SETVAR(profileNamespace,Garage_Unlocks,_garage_data); }; }; [_type, _garage_data] call FUNC(updateUnlocks); }; -}; - -TRACE_2("Arsenal Unlocks saved",_type,GVAR(pdb_mode)); +}; \ No newline at end of file diff --git a/addons/arsenal/functions/fnc_updateUnlocks.sqf b/addons/arsenal/functions/fnc_updateUnlocks.sqf index c1703a3..f94d0b9 100644 --- a/addons/arsenal/functions/fnc_updateUnlocks.sqf +++ b/addons/arsenal/functions/fnc_updateUnlocks.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_arsenal_fnc_updateUnlocks * Author: IDSolutions - * - * [Description] * Updates the arsenal system variables when unlocks change * * Arguments: @@ -24,26 +21,24 @@ params [["_type", "", [""]], ["_data", [], [[]]]]; switch (_type) do { case "armory": { - GVAR(armory_unlocks) = _data; + _data params ["_items", "_weapons", "_magazines", "_backpacks"]; - GVAR(item_unlocks) = _data select 0; - GVAR(weapon_unlocks) = _data select 1; - GVAR(magazine_unlocks) = _data select 2; - GVAR(backpack_unlocks) = _data select 3; - - TRACE_1("Armory unlocks updated",count GVAR(armory_unlocks)); + GVAR(armory_unlocks) = _data; + GVAR(item_unlocks) = _items; + GVAR(weapon_unlocks) = _weapons; + GVAR(magazine_unlocks) = _magazines; + GVAR(backpack_unlocks) = _backpacks; }; case "garage": { - GVAR(garage_unlocks) = _data; + _data params ["_cars", "_armor", "_helis", "_planes", "_naval", "_static"]; - GVAR(car_unlocks) = _data select 0; - GVAR(armor_unlocks) = _data select 1; - GVAR(heli_unlocks) = _data select 2; - GVAR(plane_unlocks) = _data select 3; - GVAR(naval_unlocks) = _data select 4; - GVAR(static_unlocks) = _data select 5; - - TRACE_1("Garage unlocks updated",count GVAR(garage_unlocks)); + GVAR(garage_unlocks) = _data; + GVAR(car_unlocks) = _cars; + GVAR(armor_unlocks) = _armor; + GVAR(heli_unlocks) = _helis; + GVAR(plane_unlocks) = _planes; + GVAR(naval_unlocks) = _naval; + GVAR(static_unlocks) = _static; }; }; \ No newline at end of file diff --git a/addons/bank/functions/fnc_initBank.sqf b/addons/bank/functions/fnc_initBank.sqf deleted file mode 100644 index 28d253e..0000000 --- a/addons/bank/functions/fnc_initBank.sqf +++ /dev/null @@ -1,49 +0,0 @@ -#include "..\script_component.hpp" - -/* - * Function: forge_client_bank_fnc_initBank - * Author: IDSolutions - * - * [Description] - * Initializes the bank system - * - * Arguments: - * None - * - * Return Value: - * None - * - * Examples: - * None - * - * Public: Yes - */ - -{ - private _configName = configName(_x); - private _className = (missionConfigFile >> "CfgBanks" >> "banks" >> _configName >> "className") call BFUNC(getCfgData); - private _pos = (missionConfigFile >> "CfgBanks" >> "banks" >> _configName >> "pos") call BFUNC(getCfgData); - private _dir = (missionConfigFile >> "CfgBanks" >> "banks" >> _configName >> "dir") call BFUNC(getCfgData); - private _type = (missionConfigFile >> "CfgBanks" >> "banks" >> _configName >> "type") call BFUNC(getCfgData); - - if (_type == "object") then { - private _bank = createSimpleObject [_className, [0, 0, 0]]; - - _bank setPosATL _pos; - _bank setDir _dir; - _bank allowDamage false; - _bank setVariable ["isBank", true, true]; - } else { - private _group = createGroup civilian; - private _bank = _group createUnit [_className, [0, 0, 0], [], 0, "NONE"]; - - _bank disableAI "MOVE"; - _bank setPosATL _pos; - _bank setDir _dir; - _bank allowDamage false; - _bank setVariable ["isBank", true, true]; - _bank setVariable ["BIS_enableRandomization", false]; - }; - - diag_log text format ["[FORGE Bank] ClassName: '%1' Pos: '%2' Dir: '%3'", _className, _pos, _dir]; -} forEach ("true" configClasses (missionConfigFile >> "CfgBanks" >> "banks")); \ No newline at end of file diff --git a/addons/bank/functions/fnc_submit.sqf b/addons/bank/functions/fnc_submit.sqf index d9d44c7..b01ecae 100644 --- a/addons/bank/functions/fnc_submit.sqf +++ b/addons/bank/functions/fnc_submit.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_bank_fnc_submit * Author: IDSolutions - * - * [Description] * Submits the timesheet * * Arguments: diff --git a/addons/bank/functions/fnc_transfer.sqf b/addons/bank/functions/fnc_transfer.sqf index 6147b35..5187169 100644 --- a/addons/bank/functions/fnc_transfer.sqf +++ b/addons/bank/functions/fnc_transfer.sqf @@ -2,7 +2,7 @@ /* * Author: IDSolutions - * Transfers money to a player. + * Transfers money to a player * * Arguments: * None diff --git a/addons/bank/functions/fnc_withdraw.sqf b/addons/bank/functions/fnc_withdraw.sqf index d358ba1..482dddc 100644 --- a/addons/bank/functions/fnc_withdraw.sqf +++ b/addons/bank/functions/fnc_withdraw.sqf @@ -2,7 +2,7 @@ /* * Author: IDSolutions - * Withdraws money from the bank. + * Withdraws money from the bank * * Arguments: * None diff --git a/addons/briefing/functions/fnc_endSlideShow.sqf b/addons/briefing/functions/fnc_endSlideShow.sqf index a688f89..ff349ce 100644 --- a/addons/briefing/functions/fnc_endSlideShow.sqf +++ b/addons/briefing/functions/fnc_endSlideShow.sqf @@ -1,15 +1,20 @@ #include "..\script_component.hpp" /* - Author: PDT for J. Schmidt - ends the slide show - - Arguments: - 0: _controller - object that controls the slide show - - Return Value: - - true if the slide show was ended; false if not -*/ + * Author: IDSolutions + * Ends the slide show + * + * Arguments: + * 0: Controller - object that controls the slide show + * + * Return Value: + * Boolean - true if the slide show was ended; false if not + * + * Example: + * [controller] call ace_briefing_fnc_endSlideShow + * + * Public: No + */ params [["_controller", objNull]]; diff --git a/addons/briefing/functions/fnc_initSlideShow.sqf b/addons/briefing/functions/fnc_initSlideShow.sqf index f63ec5c..6807b83 100644 --- a/addons/briefing/functions/fnc_initSlideShow.sqf +++ b/addons/briefing/functions/fnc_initSlideShow.sqf @@ -1,24 +1,26 @@ #include "..\script_component.hpp" /* - Author: PDT for J. Schmidt - sets up a slide show - - Arguments: - 0: _screen - array of objects to display images on - 1: _controllers - array of objects to use are controlers - 2: _images - array of image paths; images should be powers of 2 - 3: _autoScroll - should the image auto-scroll - 4: _units - unit(s) that should speak - 5: _topic - conversation topic - 6: _sentence - conversation sentence, "" = play all - - Return Value: - - true if slide show was setup; false if not - - Example: - [Screen01, [Controler01], ["images/folder/image.paa"]] call forge_client_briefing_fnc_initSlideShow; -*/ + * Author: IDSolutions + * Sets up a slide show + * + * Arguments: + * 0: _screen - array of objects to display images on + * 1: _controllers - array of objects to use are controlers + * 2: _images - array of image paths; images should be powers of 2 + * 3: _autoScroll - should the image auto-scroll + * 4: _units - unit(s) that should speak + * 5: _topic - conversation topic + * 6: _sentence - conversation sentence, "" = play all + * + * Return Value: + * - true if slide show was setup; false if not + * + * Example: + * [Screen01, [Controler01], ["images/folder/image.paa"]] call forge_client_briefing_fnc_initSlideShow; + * + * Public: No + */ params [["_screens", []], ["_controllers", []], ["_images", []], ["_autoScroll", false], ["_units", []], ["_topic", ""], ["_sentence", ""]]; diff --git a/addons/briefing/functions/fnc_nextImage.sqf b/addons/briefing/functions/fnc_nextImage.sqf index 7e0ffed..196e54d 100644 --- a/addons/briefing/functions/fnc_nextImage.sqf +++ b/addons/briefing/functions/fnc_nextImage.sqf @@ -1,15 +1,20 @@ #include "..\script_component.hpp" /* - Author: PDT for J. Schmidt - displays the next image - - Arguments: - 0: _controller - object that controls the slide show - - Return Value: - - true if the next image was displayed; false if not -*/ + * Author: IDSolutions + * Displays the next image + * + * Arguments: + * 0: _controller - object that controls the slide show + * + * Return Value: + * 0: _return - true if the next image was displayed; false if not + * + * Example: + * [controller] call ace_briefing_fnc_nextImage + * + * Public: No + */ params [["_controller", objNull]]; diff --git a/addons/briefing/functions/fnc_prevImage.sqf b/addons/briefing/functions/fnc_prevImage.sqf index 608434b..348f409 100644 --- a/addons/briefing/functions/fnc_prevImage.sqf +++ b/addons/briefing/functions/fnc_prevImage.sqf @@ -1,15 +1,20 @@ #include "..\script_component.hpp" /* - Author: PDT for J. Schmidt - displays the previous image - - Arguments: - 0: _controller - object that controls the slide show - - Return Value: - - true if the previous image was displayed; false if not -*/ + * Author: IDSolutions + * Displays the previous image + * + * Arguments: + * 0: _controller - object that controls the slide show + * + * Return Value: + * 0: _return - true if the previous image was displayed; false if not + * + * Example: + * [controller] call forge_briefing_fnc_prevImage + * + * Public: No + */ params [["_controller", objNull]]; diff --git a/addons/briefing/functions/fnc_spawnLecture.sqf b/addons/briefing/functions/fnc_spawnLecture.sqf index e864950..b3cefac 100644 --- a/addons/briefing/functions/fnc_spawnLecture.sqf +++ b/addons/briefing/functions/fnc_spawnLecture.sqf @@ -1,21 +1,25 @@ #include "..\script_component.hpp" /* - Name: forge_client_briefing_fnc_spawnLecture - Date: 8/6/2022 - Version: 1.0 - Author: J. Schmidt - - Description: - AI plays a given sentence/conversation. - - Parameter(s): - 0: Unit that is playing the given sentence/conversation. - 1: Topic that is being talked about. - 2: Sentence partaining to the topic at hand. -*/ + * Author: IDSolutions + * AI plays a given sentence/conversation + * + * Arguments: + * 0: Unit that is playing the given sentence/conversation + * 1: Topic that is being talked about + * 2: Sentence partaining to the topic at hand + * + * Return Value: + * None + * + * Example: + * [player, "topic", "sentence"] call forge_client_briefing_fnc_spawnLecture + * + * Public: No + */ params ["_unit", "_topic", "_sentence"]; + FORGE_Briefing_inProgress = true; publicVariable "FORGE_Briefing_inProgress"; diff --git a/addons/briefing/functions/fnc_spawnPresentation.sqf b/addons/briefing/functions/fnc_spawnPresentation.sqf index fb8c698..963beac 100644 --- a/addons/briefing/functions/fnc_spawnPresentation.sqf +++ b/addons/briefing/functions/fnc_spawnPresentation.sqf @@ -1,20 +1,23 @@ #include "..\script_component.hpp" /* - Name: forge_client_briefing_fnc_spawnLecture - Date: 8/6/2022 - Version: 1.0 - Author: J. Schmidt - - Description: - Object displays a slideshow presentation. - - Parameter(s): - 0: Object that will display the presentation. - 1: Slides that will be used for the presentation. - 1-0: Texture used for the Slide. - 1-1: Amount of Time the Slide will display. -*/ + * Author: IDSolutions + * Object displays a slideshow presentation + * + * Arguments: + * 0: Object that will display the presentation + * 1: Slides that will be used for the presentation + * - 0: Texture used for the Slide + * - 1: Amount of Time the Slide will display + * + * Return Value: + * None + * + * Example: + * [screen, [["texture.paa", 5]]] call forge_client_briefing_fnc_spawnLecture + * + * Public: No + */ params ["_object", "_slides"]; diff --git a/addons/briefing/functions/fnc_startSlideShow.sqf b/addons/briefing/functions/fnc_startSlideShow.sqf index 786fa36..03cdbdd 100644 --- a/addons/briefing/functions/fnc_startSlideShow.sqf +++ b/addons/briefing/functions/fnc_startSlideShow.sqf @@ -1,15 +1,20 @@ #include "..\script_component.hpp" /* - Author: PDT for J. Schmidt - starts the slideshow - - Arguments: - 0: _controller - object that controls the slide show - - Return Value: - - true if slide show was started -*/ + * Author: IDSolutions + * Starts the slideshow + * + * Arguments: + * 0: Controller - object that controls the slide show + * + * Return Value: + * Boolean - true if slide show was started + * + * Example: + * [controller] call ace_fnc_startSlideShow + * + * Public: No + */ params [["_controller", objNull], ["_units", []], ["_topic", ""], ["_sentence", ""]]; diff --git a/addons/db/functions/fnc_requestServerDB.sqf b/addons/db/functions/fnc_requestServerDB.sqf index a7638ed..8dee080 100644 --- a/addons/db/functions/fnc_requestServerDB.sqf +++ b/addons/db/functions/fnc_requestServerDB.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_db_fnc_requestServerDB * Author: IDSolutions - * - * Description: * Sends database requests to the server using CBA events * * Arguments: @@ -14,6 +11,11 @@ * * Return Value: * Request ID + * + * Example: + * ["hgetall", "Hello World!", { systemChat format ["Message: %1", _this]; }] call forge_db_fnc_requestServerDB; + * + * Public: Yes */ params [ diff --git a/addons/dialogue/functions/fnc_selectAI.sqf b/addons/dialogue/functions/fnc_selectAI.sqf index 0cb92a7..a2bf3bf 100644 --- a/addons/dialogue/functions/fnc_selectAI.sqf +++ b/addons/dialogue/functions/fnc_selectAI.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_dialogue_fnc_selectAI * Author: IDSolutions - * - * Description: * Selects AI for dialogue * * Arguments: @@ -12,6 +9,11 @@ * * Return Value: * None + * + * Example: + * [units group player] call FUNC(selectAI); + * + * Public: No */ params [["_units", [], [[]]]]; diff --git a/addons/garage/functions/fnc_fetchGarage.sqf b/addons/garage/functions/fnc_fetchGarage.sqf index b4be25d..0a1cd1c 100644 --- a/addons/garage/functions/fnc_fetchGarage.sqf +++ b/addons/garage/functions/fnc_fetchGarage.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_garage_fnc_fetchGarage * Author: IDSolutions - * - * Description: * Fetches the vehicles in the garage * * Arguments: @@ -12,6 +9,11 @@ * * Return Value: * None + * + * Example: + * None + * + * Public: No */ private _display = findDisplay IDD_GARAGEDIALOG; diff --git a/addons/garage/functions/fnc_fetchNearby.sqf b/addons/garage/functions/fnc_fetchNearby.sqf index e552bae..99bffed 100644 --- a/addons/garage/functions/fnc_fetchNearby.sqf +++ b/addons/garage/functions/fnc_fetchNearby.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_garage_fnc_fetchNearby * Author: IDSolutions - * - * Description: * Fetches the nearby vehicles * * Arguments: @@ -12,6 +9,11 @@ * * Return Value: * None + * + * Example: + * None + * + * Public: No */ private _display = findDisplay IDD_GARAGEDIALOG; diff --git a/addons/garage/functions/fnc_initGarage.sqf b/addons/garage/functions/fnc_initGarage.sqf index 2a9d305..7784df8 100644 --- a/addons/garage/functions/fnc_initGarage.sqf +++ b/addons/garage/functions/fnc_initGarage.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_garage_fnc_initGarage * Author: IDSolutions - * - * Description: * Initializes the garages * * Arguments: @@ -12,6 +9,11 @@ * * Return Value: * None + * + * Example: + * None + * + * Public: No */ { diff --git a/addons/garage/functions/fnc_openGarage.sqf b/addons/garage/functions/fnc_openGarage.sqf index b0d264c..e62d4e9 100644 --- a/addons/garage/functions/fnc_openGarage.sqf +++ b/addons/garage/functions/fnc_openGarage.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_garage_fnc_openGarage * Author: IDSolutions - * - * Description: * Opens the garage dialog * * Arguments: @@ -12,6 +9,11 @@ * * Return Value: * None + * + * Example: + * None + * + * Public: No */ disableSerialization; diff --git a/addons/garage/functions/fnc_spawnVehicle.sqf b/addons/garage/functions/fnc_spawnVehicle.sqf index 5aeb9e5..220a261 100644 --- a/addons/garage/functions/fnc_spawnVehicle.sqf +++ b/addons/garage/functions/fnc_spawnVehicle.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_garage_fnc_spawnVehicle * Author: IDSolutions - * - * Description: * Spawns a vehicle from the garage * * Arguments: @@ -12,6 +9,11 @@ * * Return Value: * None + * + * Example: + * None + * + * Public: No */ disableSerialization; diff --git a/addons/garage/functions/fnc_storeVehicle.sqf b/addons/garage/functions/fnc_storeVehicle.sqf index a162ce0..6e3bfed 100644 --- a/addons/garage/functions/fnc_storeVehicle.sqf +++ b/addons/garage/functions/fnc_storeVehicle.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_garage_fnc_storeVehicle * Author: IDSolutions - * - * Description: * Stores a vehicle in the garage * * Arguments: @@ -12,6 +9,11 @@ * * Return Value: * None + * + * Example: + * None + * + * Public: No */ private _display = findDisplay IDD_GARAGEDIALOG; diff --git a/addons/init/XEH_preInit.sqf b/addons/init/XEH_preInit.sqf index d7d59fe..387650f 100644 --- a/addons/init/XEH_preInit.sqf +++ b/addons/init/XEH_preInit.sqf @@ -5,4 +5,6 @@ PREP_RECOMPILE_START; #include "XEH_PREP.hpp" PREP_RECOMPILE_END; +GVAR(done) = false; + ADDON = true; \ No newline at end of file diff --git a/addons/init/functions/fnc_initPlayer.sqf b/addons/init/functions/fnc_initPlayer.sqf index 2ea4d7b..bc92f9a 100644 --- a/addons/init/functions/fnc_initPlayer.sqf +++ b/addons/init/functions/fnc_initPlayer.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_init_fnc_initPlayer * Author: IDSolutions - * - * [Description] - * Initialize player. + * Initialize player * * Arguments: * N/A @@ -32,7 +29,7 @@ removeBackpack player; removeGoggles player; removeHeadgear player; -SETPVAR(player,value_loadDone,false); +SETPVAR(player,GVAR(done),false); cutText ["Loading In...", "BLACK", 1]; // ["hgetall", "", "", -1, [], "forge_client_init_fnc_handlePlayerLoad", true] spawn dragonfly_db_fnc_addTask; @@ -41,7 +38,7 @@ cutText ["Loading In...", "BLACK", 1]; [] spawn FUNC(playerSaveLoop); [] spawn EFUNC(interaction,initInteraction); -waitUntil { GETVAR(player,value_loadDone,false) }; +waitUntil { GETVAR(player,GVAR(done),false) }; cutText ["", "PLAIN", 1]; waitUntil { !(isNull (findDisplay 46)) }; diff --git a/addons/init/functions/fnc_playerDBLoad.sqf b/addons/init/functions/fnc_playerDBLoad.sqf index 78f6b26..d4c57fb 100644 --- a/addons/init/functions/fnc_playerDBLoad.sqf +++ b/addons/init/functions/fnc_playerDBLoad.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_init_fnc_playerDBLoad * Author: IDSolutions - * - * [Description] - * Load player from DB. + * Load player from DB * * Arguments: * N/A diff --git a/addons/init/functions/fnc_playerDBSave.sqf b/addons/init/functions/fnc_playerDBSave.sqf index 880ba3b..7fd9b20 100644 --- a/addons/init/functions/fnc_playerDBSave.sqf +++ b/addons/init/functions/fnc_playerDBSave.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_init_fnc_playerDBSave * Author: IDSolutions - * - * [Description] - * Save player to DB. + * Save player to DB * * Arguments: * N/A @@ -20,13 +17,10 @@ * Public: Yes */ -private _default_armory_unlocks = [[],[],[],[]]; -private _default_garage_unlocks = [[],[],[],[],[],[]]; - private _data = [ getPlayerUID player, -"armory_unlocks", [GETVAR(player,Armory_Unlocks,_default_armory_unlocks)], -"garage_unlocks", [GETVAR(player,Garage_Unlocks,_default_garage_unlocks)], +"armory_unlocks", [GETVAR(player,Armory_Unlocks,EGVAR(arsenal,default_armory))], +"garage_unlocks", [GETVAR(player,Garage_Unlocks,EGVAR(arsenal,default_garage))], "locker", [GETVAR(player,FORGE_Locker,[])], "garage", [GETVAR(player,FORGE_Garage,[])], "cash", [GETVAR(player,FORGE_Cash,0)], diff --git a/addons/init/functions/fnc_playerSaveLoop.sqf b/addons/init/functions/fnc_playerSaveLoop.sqf index efd3999..a2647d5 100644 --- a/addons/init/functions/fnc_playerSaveLoop.sqf +++ b/addons/init/functions/fnc_playerSaveLoop.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_init_fnc_playerSaveLoop * Author: IDSolutions - * - * [Description] - * Initialize player save loop. + * Initialize player save loop * * Arguments: * N/A diff --git a/addons/interaction/functions/fnc_initInteraction.sqf b/addons/interaction/functions/fnc_initInteraction.sqf index a95deaa..4ed6373 100644 --- a/addons/interaction/functions/fnc_initInteraction.sqf +++ b/addons/interaction/functions/fnc_initInteraction.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_interaction_fnc_initInteraction * Author: IDSolutions - * - * [Description] - * Initialize player interaction. + * Initialize player interaction * * Arguments: * N/A diff --git a/addons/interaction/functions/fnc_interactionAction.sqf b/addons/interaction/functions/fnc_interactionAction.sqf index a7a0896..c9c3c63 100644 --- a/addons/interaction/functions/fnc_interactionAction.sqf +++ b/addons/interaction/functions/fnc_interactionAction.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_interaction_fnc_interactionAction * Author: IDSolutions - * - * [Description] - * Initialize player interaction. + * Initialize player interaction * * Arguments: * 0: Index of current action array diff --git a/addons/interaction/functions/fnc_openInteraction.sqf b/addons/interaction/functions/fnc_openInteraction.sqf index 93265d8..5a0d297 100644 --- a/addons/interaction/functions/fnc_openInteraction.sqf +++ b/addons/interaction/functions/fnc_openInteraction.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_interaction_fnc_openInteraction * Author: IDSolutions - * - * [Description] - * Open player interaction. + * Open player interaction * * Arguments: * N/A diff --git a/addons/locker/functions/fnc_equipGear.sqf b/addons/locker/functions/fnc_equipGear.sqf index a13ac5a..93fd9de 100644 --- a/addons/locker/functions/fnc_equipGear.sqf +++ b/addons/locker/functions/fnc_equipGear.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_locker_fnc_equipGear * Author: IDSolutions - * - * [Description] - * Equips gear from the locker. + * Equips gear from the locker * * Arguments: * N/A diff --git a/addons/locker/functions/fnc_fetchLocker.sqf b/addons/locker/functions/fnc_fetchLocker.sqf index a8d8688..b4f72b5 100644 --- a/addons/locker/functions/fnc_fetchLocker.sqf +++ b/addons/locker/functions/fnc_fetchLocker.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_locker_fnc_fetchLocker * Author: IDSolutions - * - * [Description] - * Fetches the locker. + * Fetches the locker * * Arguments: * N/A diff --git a/addons/locker/functions/fnc_fetchPlayer.sqf b/addons/locker/functions/fnc_fetchPlayer.sqf index 6ae30da..39901b2 100644 --- a/addons/locker/functions/fnc_fetchPlayer.sqf +++ b/addons/locker/functions/fnc_fetchPlayer.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_locker_fnc_fetchPlayer * Author: IDSolutions - * - * [Description] - * Fetches the player's gear. + * Fetches the player's gear * * Arguments: * N/A diff --git a/addons/locker/functions/fnc_initLocker.sqf b/addons/locker/functions/fnc_initLocker.sqf index 09b6465..0f569cd 100644 --- a/addons/locker/functions/fnc_initLocker.sqf +++ b/addons/locker/functions/fnc_initLocker.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_locker_fnc_initLocker * Author: IDSolutions - * - * [Description] - * Initializes the lockers. + * Initializes the lockers * * Arguments: * N/A diff --git a/addons/locker/functions/fnc_openLocker.sqf b/addons/locker/functions/fnc_openLocker.sqf index ec42192..e3230c4 100644 --- a/addons/locker/functions/fnc_openLocker.sqf +++ b/addons/locker/functions/fnc_openLocker.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_locker_fnc_openLocker * Author: IDSolutions - * - * [Description] - * Opens the locker dialog. + * Opens the locker dialog * * Arguments: * N/A diff --git a/addons/locker/functions/fnc_storeGear.sqf b/addons/locker/functions/fnc_storeGear.sqf index dc99eca..8659e00 100644 --- a/addons/locker/functions/fnc_storeGear.sqf +++ b/addons/locker/functions/fnc_storeGear.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_locker_fnc_storeGear * Author: IDSolutions - * - * [Description] - * Stores gear in the locker. + * Stores gear in the locker * * Arguments: * N/A diff --git a/addons/medical/functions/fnc_deductMedicalCost.sqf b/addons/medical/functions/fnc_deductMedicalCost.sqf index ab86086..3bde3ff 100644 --- a/addons/medical/functions/fnc_deductMedicalCost.sqf +++ b/addons/medical/functions/fnc_deductMedicalCost.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_medical_fnc_deductMedicalCost * Author: IDSolutions - * - * [Description] - * Deducts the medical cost from the player's account. + * Deducts the medical cost from the player's account * * Arguments: * 0: Unit diff --git a/addons/medical/functions/fnc_heartBeat.sqf b/addons/medical/functions/fnc_heartBeat.sqf index f5a2045..2177ed2 100644 --- a/addons/medical/functions/fnc_heartBeat.sqf +++ b/addons/medical/functions/fnc_heartBeat.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_medical_fnc_deductMedicalCost * Author: IDSolutions - * - * [Description] * Deducts the medical cost from the player's account. * * Arguments: diff --git a/addons/medical/functions/fnc_initMedical.sqf b/addons/medical/functions/fnc_initMedical.sqf index b3a38d2..9852d0f 100644 --- a/addons/medical/functions/fnc_initMedical.sqf +++ b/addons/medical/functions/fnc_initMedical.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_medical_fnc_initMedical * Author: IDSolutions - * - * [Description] - * Initializes the medical system. + * Initializes the medical system * * Arguments: * N/A diff --git a/addons/medical/functions/fnc_moveInventory.sqf b/addons/medical/functions/fnc_moveInventory.sqf index cb44b35..4657897 100644 --- a/addons/medical/functions/fnc_moveInventory.sqf +++ b/addons/medical/functions/fnc_moveInventory.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_medical_fnc_moveInventory * Author: IDSolutions - * - * [Description] - * Moves the unit's inventory to the body bag. + * Moves the unit's inventory to the body bag * * Arguments: * 0: Unit diff --git a/addons/medical/functions/fnc_onKilled.sqf b/addons/medical/functions/fnc_onKilled.sqf index 0d28d07..2619fd7 100644 --- a/addons/medical/functions/fnc_onKilled.sqf +++ b/addons/medical/functions/fnc_onKilled.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_medical_fnc_onKilled * Author: IDSolutions - * - * [Description] - * Handles the unit's death. + * Handles the unit's death * * Arguments: * 0: Unit diff --git a/addons/medical/functions/fnc_onRespawn.sqf b/addons/medical/functions/fnc_onRespawn.sqf index 1d80c47..1497873 100644 --- a/addons/medical/functions/fnc_onRespawn.sqf +++ b/addons/medical/functions/fnc_onRespawn.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_medical_fnc_onRespawn * Author: IDSolutions - * - * [Description] - * Handles the unit's respawn. + * Handles the unit's respawn * * Arguments: * 0: Unit diff --git a/addons/medical/functions/fnc_saveDroppedWeapons.sqf b/addons/medical/functions/fnc_saveDroppedWeapons.sqf index b504c25..e796bcd 100644 --- a/addons/medical/functions/fnc_saveDroppedWeapons.sqf +++ b/addons/medical/functions/fnc_saveDroppedWeapons.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_medical_fnc_saveDroppedWeapons * Author: IDSolutions - * - * [Description] - * Saves the unit's dropped weapons and items. + * Saves the unit's dropped weapons and items * * Arguments: * 0: Unit diff --git a/addons/misc/functions/fnc_cargoToPairs.sqf b/addons/misc/functions/fnc_cargoToPairs.sqf index f933a45..b163031 100644 --- a/addons/misc/functions/fnc_cargoToPairs.sqf +++ b/addons/misc/functions/fnc_cargoToPairs.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_cargoToPairs * Author: IDSolutions - * - * [Description] - * Converts a cargo array to an array of pairs. + * Converts a cargo array to an array of pairs * * Arguments: * 0: Cargo Array diff --git a/addons/misc/functions/fnc_deserializeString.sqf b/addons/misc/functions/fnc_deserializeString.sqf index beebdd4..df17f40 100644 --- a/addons/misc/functions/fnc_deserializeString.sqf +++ b/addons/misc/functions/fnc_deserializeString.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_deserializeString * Author: IDSolutions - * - * [Description] - * Converts underscores in a string to spaces for display. + * Converts underscores in a string to spaces for display * * Arguments: * 0: String diff --git a/addons/misc/functions/fnc_formatNumber.sqf b/addons/misc/functions/fnc_formatNumber.sqf index 0415967..cd1ec2f 100644 --- a/addons/misc/functions/fnc_formatNumber.sqf +++ b/addons/misc/functions/fnc_formatNumber.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_formatNumber * Author: IDSolutions - * - * [Description] - * Formats a number with thousands separators and decimal places. + * Formats a number with thousands separators and decimal places * * Arguments: * 0: Number diff --git a/addons/misc/functions/fnc_getSystemTime.sqf b/addons/misc/functions/fnc_getSystemTime.sqf index 0668ebc..0f9a0e3 100644 --- a/addons/misc/functions/fnc_getSystemTime.sqf +++ b/addons/misc/functions/fnc_getSystemTime.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_getSystemTime * Author: IDSolutions - * - * [Description] - * Gets the current system time in a formatted string. + * Gets the current system time in a formatted string * * Arguments: * None diff --git a/addons/misc/functions/fnc_isAssignableBinocular.sqf b/addons/misc/functions/fnc_isAssignableBinocular.sqf index 88ae980..4653918 100644 --- a/addons/misc/functions/fnc_isAssignableBinocular.sqf +++ b/addons/misc/functions/fnc_isAssignableBinocular.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_isAssignableBinocular * Author: IDSolutions - * - * [Description] - * Checks if a binocular is assignable. + * Checks if a binocular is assignable * * Arguments: * 0: Binocular diff --git a/addons/misc/functions/fnc_isWeaponType.sqf b/addons/misc/functions/fnc_isWeaponType.sqf index b1623e4..c53ad21 100644 --- a/addons/misc/functions/fnc_isWeaponType.sqf +++ b/addons/misc/functions/fnc_isWeaponType.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_isWeaponType * Author: IDSolutions - * - * [Description] - * Checks if a weapon is of a certain type. + * Checks if a weapon is of a certain type * * Arguments: * 0: Weapon diff --git a/addons/misc/functions/fnc_notify.sqf b/addons/misc/functions/fnc_notify.sqf index 4477789..b6cae4f 100644 --- a/addons/misc/functions/fnc_notify.sqf +++ b/addons/misc/functions/fnc_notify.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_notify * Author: IDSolutions - * - * [Description] - * Creates a notification. + * Creates a notification * * Arguments: * 0: STRING - The text to display diff --git a/addons/misc/functions/fnc_serializeString.sqf b/addons/misc/functions/fnc_serializeString.sqf index 5212e66..db37c58 100644 --- a/addons/misc/functions/fnc_serializeString.sqf +++ b/addons/misc/functions/fnc_serializeString.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_serializeString * Author: IDSolutions - * - * [Description] - * Converts spaces in a string to underscores for database storage. + * Converts spaces in a string to underscores for database storage * * Arguments: * 0: String diff --git a/addons/misc/functions/fnc_test.sqf b/addons/misc/functions/fnc_test.sqf index e2e0356..4118d81 100644 --- a/addons/misc/functions/fnc_test.sqf +++ b/addons/misc/functions/fnc_test.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_misc_fnc_test * Author: IDSolutions - * - * [Description] - * Test function. + * Test function * * Arguments: * 0: Value diff --git a/addons/money/functions/fnc_giveCash.sqf b/addons/money/functions/fnc_giveCash.sqf index da89264..9610430 100644 --- a/addons/money/functions/fnc_giveCash.sqf +++ b/addons/money/functions/fnc_giveCash.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_money_fnc_giveCash * Author: IDSolutions - * - * [Description] - * Send money to player. + * Send money to player * * Arguments: * 0: Target to send money diff --git a/addons/money/functions/fnc_giveCashSubmit.sqf b/addons/money/functions/fnc_giveCashSubmit.sqf index b17a6d0..7b16958 100644 --- a/addons/money/functions/fnc_giveCashSubmit.sqf +++ b/addons/money/functions/fnc_giveCashSubmit.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_money_fnc_giveCashSubmit * Author: IDSolutions - * - * [Description] - * Handle cash to be given. + * Handle cash to be given * * Arguments: * 0: Target to add money @@ -23,8 +20,6 @@ params ["_target", "_player"]; private _amount = parseNumber (ctrlText 1401); -// private _playerCash = player getVariable ["FORGE_Cash", 0]; -// private _targetCash = _target getVariable ["FORGE_Cash", 0]; private _playerCash = GETVAR(player,FORGE_Cash,0); private _targetCash = GETVAR(_target,FORGE_Cash,0); @@ -33,7 +28,6 @@ if (_amount > 0) then { private _newCash = _targetCash + _amount; private _formattedAmount = (_amount) call EFUNC(misc,formatNumber); - // _target setVariable ["FORGE_Cash", _newCash, true]; SETPVAR(_target,FORGE_Cash,_newCash); ["deduct", "Cash", _amount] remoteExecCall ["forge_server_money_fnc_handleMoney", 2]; diff --git a/addons/money/functions/fnc_takeCash.sqf b/addons/money/functions/fnc_takeCash.sqf index d35b238..5b52ec4 100644 --- a/addons/money/functions/fnc_takeCash.sqf +++ b/addons/money/functions/fnc_takeCash.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_money_fnc_takeCash * Author: IDSolutions - * - * [Description] - * Handle cash picked up. + * Handle cash picked up * * Arguments: * 0: Target diff --git a/addons/org/functions/fnc_addAsset.sqf b/addons/org/functions/fnc_addAsset.sqf index fb21bda..6ba4fcf 100644 --- a/addons/org/functions/fnc_addAsset.sqf +++ b/addons/org/functions/fnc_addAsset.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_addAsset * Author: IDSolutions - * - * [Description] - * Adds an asset to an organization's inventory. + * Adds an asset to an organization's inventory * * Arguments: * 0: Asset Type - Type of asset (vehicle, building, etc.) diff --git a/addons/org/functions/fnc_addFunds.sqf b/addons/org/functions/fnc_addFunds.sqf index a8d3c17..8d608fd 100644 --- a/addons/org/functions/fnc_addFunds.sqf +++ b/addons/org/functions/fnc_addFunds.sqf @@ -1,12 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_addFunds * Author: IDSolutions - * - * [Description] - * Adds or removes funds from an organization's account. - * Positive values increase funds, negative values decrease funds. + * Adds or removes funds from an organization's account * * Arguments: * 0: Amount - Amount to add (positive) or withdraw (negative) diff --git a/addons/org/functions/fnc_addMember.sqf b/addons/org/functions/fnc_addMember.sqf index 0f3a092..1065037 100644 --- a/addons/org/functions/fnc_addMember.sqf +++ b/addons/org/functions/fnc_addMember.sqf @@ -1,12 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_addMember * Author: IDSolutions - * - * [Description] - * Adds a new member to an organization. Only the organization owner can add members. - * The new member will be assigned the default "member" role. + * Adds a new member to an organization if added by the owner * * Arguments: * 0: Player UID - Unique identifier of the player to add diff --git a/addons/org/functions/fnc_addReputation.sqf b/addons/org/functions/fnc_addReputation.sqf index 6aa3368..21f175c 100644 --- a/addons/org/functions/fnc_addReputation.sqf +++ b/addons/org/functions/fnc_addReputation.sqf @@ -1,12 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_addReputation * Author: IDSolutions - * - * [Description] - * Adds or removes reputation from an organization. - * Positive values increase reputation, negative values decrease reputation. + * Adds or removes reputation from an organization * * Arguments: * 0: Amount - Amount of reputation to add (positive) or subtract (negative) diff --git a/addons/org/functions/fnc_create.sqf b/addons/org/functions/fnc_create.sqf index 0a145b9..70c1baa 100644 --- a/addons/org/functions/fnc_create.sqf +++ b/addons/org/functions/fnc_create.sqf @@ -1,12 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_create * Author: IDSolutions - * - * [Description] - * Creates a new organization for a player. - * Initializes the organization with the specified name, owner, and optional starting funds and reputation. + * Creates a new organization for a player * * Arguments: * 0: Owner UID - Player UID who will own the organization diff --git a/addons/org/functions/fnc_disband.sqf b/addons/org/functions/fnc_disband.sqf index ab0f6a2..a2dcdd8 100644 --- a/addons/org/functions/fnc_disband.sqf +++ b/addons/org/functions/fnc_disband.sqf @@ -1,13 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_disband * Author: IDSolutions - * - * [Description] - * Disbands an organization if requested by the owner. - * This permanently deletes the organization from the database and cannot be undone. - * Only the organization owner can perform this action. + * Disbands an organization if requested by the owner * * Arguments: * None diff --git a/addons/org/functions/fnc_handleOrgLoad.sqf b/addons/org/functions/fnc_handleOrgLoad.sqf index e71685e..5948f4f 100644 --- a/addons/org/functions/fnc_handleOrgLoad.sqf +++ b/addons/org/functions/fnc_handleOrgLoad.sqf @@ -1,13 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_handleOrgLoad * Author: IDSolutions - * - * [Description] - * Processes and transforms raw organization data from a database into a structured hashMap. - * Handles data normalization, type conversion, and ensures all required organization fields are present. - * This function is called as a callback when organization data is loaded from the database. + * Loads organization from database * * Arguments: * 0: Raw Data - DragonflyDB HGETALL result containing raw organization data @@ -16,7 +11,7 @@ * None * * Example: - * _orgData call forge_client_org_fnc_handleOrgLoad + * [_orgData] call forge_client_org_fnc_handleOrgLoad * * Public: No */ diff --git a/addons/org/functions/fnc_initOrgStore.sqf b/addons/org/functions/fnc_initOrgStore.sqf index 83b4cb8..9f51fd9 100644 --- a/addons/org/functions/fnc_initOrgStore.sqf +++ b/addons/org/functions/fnc_initOrgStore.sqf @@ -1,17 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_initOrgStore * Author: IDSolutions - * - * Description: - * Initializes a client-side organization store interface for managing player organization data - * Provides CRUD operations for organizations, including database persistence through ArmaDragonflyClient - * - * Creates a hashMap object with methods for: - * - Creating, loading, and saving organizations - * - Managing organization funds and reputation - * - Adding, removing, and querying organization members and assets + * Provides CRUD operations for organizations * * Returns: * Organization store interface @@ -19,6 +10,8 @@ * Example: * private _orgStore = call forge_client_org_fnc_initOrgStore; * _orgStore call ["createOrg", [getPlayerUID player, "My Organization"]]; + * + * Public: Yes */ private _orgStoreInterface = createHashMapObject [[ diff --git a/addons/org/functions/fnc_leave.sqf b/addons/org/functions/fnc_leave.sqf index 3cb6a86..f7e6502 100644 --- a/addons/org/functions/fnc_leave.sqf +++ b/addons/org/functions/fnc_leave.sqf @@ -1,13 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_leave * Author: IDSolutions - * - * [Description] - * Removes the current player from an organization. - * This allows a member to leave their organization voluntarily. - * Organization owners cannot use this function and must use disband instead. + * Removes the player from an organization, not applicable for owners * * Arguments: * None diff --git a/addons/org/functions/fnc_removeAsset.sqf b/addons/org/functions/fnc_removeAsset.sqf index efa96a1..200dd2a 100644 --- a/addons/org/functions/fnc_removeAsset.sqf +++ b/addons/org/functions/fnc_removeAsset.sqf @@ -1,12 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_removeAsset * Author: IDSolutions - * - * [Description] - * Removes an asset from an organization's inventory. - * Deletes the specified asset based on its type and unique identifier. + * Removes an asset from an organization's inventory * * Arguments: * 0: Asset Type - Type of asset (vehicle, building, etc.) diff --git a/addons/org/functions/fnc_verifyOrgStore.sqf b/addons/org/functions/fnc_verifyOrgStore.sqf index 70b057b..42d1972 100644 --- a/addons/org/functions/fnc_verifyOrgStore.sqf +++ b/addons/org/functions/fnc_verifyOrgStore.sqf @@ -1,13 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_org_fnc_verifyOrgStore * Author: IDSolutions - * - * [Description] - * Ensures the organization store is initialized and returns the store object. - * Acts as a singleton accessor for the organization store interface. - * If the store doesn't exist yet, it initializes it first. + * Ensures the organization store is initialized and returns the store object * * Arguments: * None diff --git a/addons/phone/functions/fnc_addContact.sqf b/addons/phone/functions/fnc_addContact.sqf index a8bc969..28da6e6 100644 --- a/addons/phone/functions/fnc_addContact.sqf +++ b/addons/phone/functions/fnc_addContact.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_addContact * Author: IDSolutions - * - * [Description] - * Adds a contact to the address book. + * Adds a contact to the address book * * Arguments: * 0: Contact - The contact to add diff --git a/addons/phone/functions/fnc_addEmail.sqf b/addons/phone/functions/fnc_addEmail.sqf index 9a23066..7bc72be 100644 --- a/addons/phone/functions/fnc_addEmail.sqf +++ b/addons/phone/functions/fnc_addEmail.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_addEmail * Author: IDSolutions - * - * [Description] - * Adds an email to the address book. + * Adds an email to the email list * * Arguments: * 0: Email - The email to add @@ -14,7 +11,7 @@ * None * * Example: - * ["test@test.com"] call forge_client_phone_fnc_addEmail; + * ["Hello World"] call forge_client_phone_fnc_addEmail; * * Public: Yes */ diff --git a/addons/phone/functions/fnc_addMsg.sqf b/addons/phone/functions/fnc_addMsg.sqf index 15b4cdf..b913554 100644 --- a/addons/phone/functions/fnc_addMsg.sqf +++ b/addons/phone/functions/fnc_addMsg.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_addMsg * Author: IDSolutions - * - * [Description] - * Adds a message to the message log. + * Adds a message to the message list * * Arguments: * 0: Message - The message to add diff --git a/addons/phone/functions/fnc_addOfflineEmail.sqf b/addons/phone/functions/fnc_addOfflineEmail.sqf index 9234252..948313f 100644 --- a/addons/phone/functions/fnc_addOfflineEmail.sqf +++ b/addons/phone/functions/fnc_addOfflineEmail.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_addOfflineEmail * Author: IDSolutions - * - * [Description] - * Adds an email to the offline email list. + * Adds an email to the offline email list * * Arguments: * 0: Email - The email to add diff --git a/addons/phone/functions/fnc_addOfflineMsg.sqf b/addons/phone/functions/fnc_addOfflineMsg.sqf index b3f8e35..dbea9e9 100644 --- a/addons/phone/functions/fnc_addOfflineMsg.sqf +++ b/addons/phone/functions/fnc_addOfflineMsg.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_addOfflineMsg * Author: IDSolutions - * - * [Description] - * Adds a message to the offline message list. + * Adds a message to the offline message list * * Arguments: * 0: Message - The message to add diff --git a/addons/phone/functions/fnc_dateToHhMm.sqf b/addons/phone/functions/fnc_dateToHhMm.sqf index 97dfcb1..ff4367b 100644 --- a/addons/phone/functions/fnc_dateToHhMm.sqf +++ b/addons/phone/functions/fnc_dateToHhMm.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_dateToHhMm * Author: IDSolutions - * - * [Description] * Converts a date to a string in the format "HH:MM". * * Arguments: diff --git a/addons/phone/functions/fnc_delEmail.sqf b/addons/phone/functions/fnc_delEmail.sqf index cab7c20..d01836f 100644 --- a/addons/phone/functions/fnc_delEmail.sqf +++ b/addons/phone/functions/fnc_delEmail.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_delEmail * Author: IDSolutions - * - * [Description] - * Deletes an email from the address book. + * Deletes an email from the email list * * Arguments: * None diff --git a/addons/phone/functions/fnc_delMsg.sqf b/addons/phone/functions/fnc_delMsg.sqf index cf5abe8..c4ce398 100644 --- a/addons/phone/functions/fnc_delMsg.sqf +++ b/addons/phone/functions/fnc_delMsg.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_delMsg * Author: IDSolutions - * - * [Description] - * Deletes a message from the message log. + * Deletes a message from the message list * * Arguments: * None diff --git a/addons/phone/functions/fnc_initAction.sqf b/addons/phone/functions/fnc_initAction.sqf index 2e0efa9..2e02ef4 100644 --- a/addons/phone/functions/fnc_initAction.sqf +++ b/addons/phone/functions/fnc_initAction.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_initAction * Author: IDSolutions - * - * [Description] - * Initializes the phone action. + * Initializes the phone action * * Arguments: * None diff --git a/addons/phone/functions/fnc_initAddAction.sqf b/addons/phone/functions/fnc_initAddAction.sqf index fadb28b..5d2cc76 100644 --- a/addons/phone/functions/fnc_initAddAction.sqf +++ b/addons/phone/functions/fnc_initAddAction.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_initAddAction * Author: IDSolutions - * - * [Description] - * Initializes the phone action. + * Initializes the phone action * * Arguments: * None diff --git a/addons/phone/functions/fnc_initPhone.sqf b/addons/phone/functions/fnc_initPhone.sqf index b9ecaea..30e552f 100644 --- a/addons/phone/functions/fnc_initPhone.sqf +++ b/addons/phone/functions/fnc_initPhone.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_initPhone * Author: IDSolutions - * - * [Description] - * Initializes the phone. + * Initializes the phone * * Arguments: * None diff --git a/addons/phone/functions/fnc_initVar.sqf b/addons/phone/functions/fnc_initVar.sqf index cf7acfe..eb37b77 100644 --- a/addons/phone/functions/fnc_initVar.sqf +++ b/addons/phone/functions/fnc_initVar.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_initVar * Author: IDSolutions - * - * [Description] - * Initializes the phone variables. + * Initializes the phone variables * * Arguments: * None diff --git a/addons/phone/functions/fnc_newEmail.sqf b/addons/phone/functions/fnc_newEmail.sqf index edfda8e..0ee1f0d 100644 --- a/addons/phone/functions/fnc_newEmail.sqf +++ b/addons/phone/functions/fnc_newEmail.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_newEmail * Author: IDSolutions - * - * [Description] - * Adds a new email to the address book. + * Adds a new email to the email list * * Arguments: * 0: Email - The email to add diff --git a/addons/phone/functions/fnc_newMsg.sqf b/addons/phone/functions/fnc_newMsg.sqf index 5d424e9..f855afc 100644 --- a/addons/phone/functions/fnc_newMsg.sqf +++ b/addons/phone/functions/fnc_newMsg.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_newMsg * Author: IDSolutions - * - * [Description] - * Adds a new message to the message log. + * Adds a new message to the message list * * Arguments: * 0: Number - The number to add diff --git a/addons/phone/functions/fnc_openPhone.sqf b/addons/phone/functions/fnc_openPhone.sqf index 415b97f..980364b 100644 --- a/addons/phone/functions/fnc_openPhone.sqf +++ b/addons/phone/functions/fnc_openPhone.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_openPhone * Author: IDSolutions - * - * [Description] - * Opens the phone. + * Opens the phone * * Arguments: * None diff --git a/addons/phone/functions/fnc_sendEmail.sqf b/addons/phone/functions/fnc_sendEmail.sqf index da6e9f1..40df842 100644 --- a/addons/phone/functions/fnc_sendEmail.sqf +++ b/addons/phone/functions/fnc_sendEmail.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_sendEmail * Author: IDSolutions - * - * [Description] - * Sends an email. + * Sends an email * * Arguments: * 0: Email - The email to send to diff --git a/addons/phone/functions/fnc_sendMsg.sqf b/addons/phone/functions/fnc_sendMsg.sqf index 9d623fb..0e5bd08 100644 --- a/addons/phone/functions/fnc_sendMsg.sqf +++ b/addons/phone/functions/fnc_sendMsg.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_sendMsg * Author: IDSolutions - * - * [Description] - * Sends a message. + * Sends a message * * Arguments: * 0: Number - The number to send to diff --git a/addons/phone/functions/fnc_showContact.sqf b/addons/phone/functions/fnc_showContact.sqf index c90da3d..4e3e1e3 100644 --- a/addons/phone/functions/fnc_showContact.sqf +++ b/addons/phone/functions/fnc_showContact.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_showContact * Author: IDSolutions - * - * [Description] - * Shows the contact list. + * Shows the contact list * * Arguments: * None diff --git a/addons/phone/functions/fnc_showDialpad.sqf b/addons/phone/functions/fnc_showDialpad.sqf index bb5e361..083fa37 100644 --- a/addons/phone/functions/fnc_showDialpad.sqf +++ b/addons/phone/functions/fnc_showDialpad.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_showDialpad * Author: IDSolutions - * - * [Description] - * Shows the dialpad. + * Shows the dialpad * * Arguments: * None diff --git a/addons/phone/functions/fnc_showEmail.sqf b/addons/phone/functions/fnc_showEmail.sqf index 1542c92..3690db5 100644 --- a/addons/phone/functions/fnc_showEmail.sqf +++ b/addons/phone/functions/fnc_showEmail.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_showEmail * Author: IDSolutions - * - * [Description] - * Shows the email. + * Shows the email * * Arguments: * None diff --git a/addons/phone/functions/fnc_showMessage.sqf b/addons/phone/functions/fnc_showMessage.sqf index 142f9b6..a12b445 100644 --- a/addons/phone/functions/fnc_showMessage.sqf +++ b/addons/phone/functions/fnc_showMessage.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_showMessage * Author: IDSolutions - * - * [Description] - * Shows the message. + * Shows the message * * Arguments: * None diff --git a/addons/phone/functions/fnc_showMessageInput.sqf b/addons/phone/functions/fnc_showMessageInput.sqf index e73eccc..4c70939 100644 --- a/addons/phone/functions/fnc_showMessageInput.sqf +++ b/addons/phone/functions/fnc_showMessageInput.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_showMessageInput * Author: IDSolutions - * - * [Description] - * Shows the message input. + * Shows the message input * * Arguments: * None diff --git a/addons/phone/functions/fnc_showSafari.sqf b/addons/phone/functions/fnc_showSafari.sqf index b0a9e11..156f76a 100644 --- a/addons/phone/functions/fnc_showSafari.sqf +++ b/addons/phone/functions/fnc_showSafari.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_showSafari * Author: IDSolutions - * - * [Description] - * Shows the safari browser. + * Shows the safari browser * * Arguments: * None diff --git a/addons/phone/functions/fnc_viewContacts.sqf b/addons/phone/functions/fnc_viewContacts.sqf index e6e7d30..c77d14c 100644 --- a/addons/phone/functions/fnc_viewContacts.sqf +++ b/addons/phone/functions/fnc_viewContacts.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_viewContacts * Author: IDSolutions - * - * [Description] - * Shows the contact list. + * Shows the contact list * * Arguments: * None diff --git a/addons/phone/functions/fnc_viewEmail.sqf b/addons/phone/functions/fnc_viewEmail.sqf index 0b4c3dd..bc32f7d 100644 --- a/addons/phone/functions/fnc_viewEmail.sqf +++ b/addons/phone/functions/fnc_viewEmail.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_viewEmail * Author: IDSolutions - * - * [Description] - * Shows the email list. + * Shows the email list * * Arguments: * None diff --git a/addons/phone/functions/fnc_viewMessages.sqf b/addons/phone/functions/fnc_viewMessages.sqf index 8307043..2542054 100644 --- a/addons/phone/functions/fnc_viewMessages.sqf +++ b/addons/phone/functions/fnc_viewMessages.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_viewMessages * Author: IDSolutions - * - * [Description] - * Shows the message list. + * Shows the message list * * Arguments: * None diff --git a/addons/phone/functions/fnc_viewSettings.sqf b/addons/phone/functions/fnc_viewSettings.sqf index 310db22..ecfd8f6 100644 --- a/addons/phone/functions/fnc_viewSettings.sqf +++ b/addons/phone/functions/fnc_viewSettings.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_phone_fnc_viewSettings * Author: IDSolutions - * - * [Description] - * Shows the settings. + * Shows the settings * * Arguments: * None diff --git a/addons/player/functions/fnc_firstLogin.sqf b/addons/player/functions/fnc_firstLogin.sqf index 50a07e5..386932a 100644 --- a/addons/player/functions/fnc_firstLogin.sqf +++ b/addons/player/functions/fnc_firstLogin.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_player_fnc_firstLogin * Author: IDSolutions - * - * [Description] - * Setup new player. + * Setup new player * * Arguments: * N/A diff --git a/addons/service/functions/fnc_fuel.sqf b/addons/service/functions/fnc_fuel.sqf index 4ebec50..a77db0a 100644 --- a/addons/service/functions/fnc_fuel.sqf +++ b/addons/service/functions/fnc_fuel.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_service_fnc_fuel - * Author: Creedcoder, J. Schmidt - * - * Description: - * Refuels the vehicle. + * Author: IDSolutions + * Refuels the vehicle * * Arguments: * 0: Vehicle - The vehicle to refuel diff --git a/addons/service/functions/fnc_initService.sqf b/addons/service/functions/fnc_initService.sqf index 8b19d99..9b6ca9c 100644 --- a/addons/service/functions/fnc_initService.sqf +++ b/addons/service/functions/fnc_initService.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_service_fnc_initService - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the service system. + * Author: IDSolutions + * Initializes the service system * * Arguments: * None diff --git a/addons/service/functions/fnc_rearm.sqf b/addons/service/functions/fnc_rearm.sqf index 4aee3a6..efc99eb 100644 --- a/addons/service/functions/fnc_rearm.sqf +++ b/addons/service/functions/fnc_rearm.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_service_fnc_rearm - * Author: Creedcoder, J. Schmidt - * - * Description: - * Rears the vehicle. + * Author: IDSolutions + * Rears the vehicle * * Arguments: * 0: Vehicle - The vehicle to rearm diff --git a/addons/service/functions/fnc_refuel.sqf b/addons/service/functions/fnc_refuel.sqf index f541142..80aab4d 100644 --- a/addons/service/functions/fnc_refuel.sqf +++ b/addons/service/functions/fnc_refuel.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_service_fnc_refuel - * Author: Creedcoder, J. Schmidt - * - * Description: - * Refuels the vehicle. + * Author: IDSolutions + * Refuels the vehicle * * Arguments: * 0: Vehicle - The vehicle to refuel diff --git a/addons/service/functions/fnc_repair.sqf b/addons/service/functions/fnc_repair.sqf index c22c49c..7e86d15 100644 --- a/addons/service/functions/fnc_repair.sqf +++ b/addons/service/functions/fnc_repair.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_service_fnc_repair - * Author: Creedcoder, J. Schmidt - * - * Description: - * Repairs the vehicle. + * Author: IDSolutions + * Repairs the vehicle * * Arguments: * 0: Vehicle - The vehicle to repair diff --git a/addons/service/functions/fnc_vehicle.sqf b/addons/service/functions/fnc_vehicle.sqf index 95b4d71..16ad9fc 100644 --- a/addons/service/functions/fnc_vehicle.sqf +++ b/addons/service/functions/fnc_vehicle.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_service_fnc_vehicle - * Author: Creedcoder, J. Schmidt - * - * Description: + * Author: IDSolutions * Handles servicing of vehicles including rearmament, refueling, and repairs. * Calculates and deducts service costs from the player's organization funds. * diff --git a/addons/store/functions/fnc_buyItem.sqf b/addons/store/functions/fnc_buyItem.sqf index 90f6a21..aa1839e 100644 --- a/addons/store/functions/fnc_buyItem.sqf +++ b/addons/store/functions/fnc_buyItem.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_buyItem - * Author: J. Schmidt - * - * Description: - * Purchases an item and adds it to the player's locker. + * Author: IDSolutions + * Purchases an item and adds it to the player's locker * * Arguments: * 0: Class Name - The classname of the item to purchase diff --git a/addons/store/functions/fnc_buyVehicle.sqf b/addons/store/functions/fnc_buyVehicle.sqf index f9cbd78..2c2f9b2 100644 --- a/addons/store/functions/fnc_buyVehicle.sqf +++ b/addons/store/functions/fnc_buyVehicle.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_buyVehicle - * Author: J. Schmidt - * - * Description: - * Purchases a vehicle and adds it to the player's garage. + * Author: IDSolutions + * Purchases a vehicle and adds it to the player's garage * * Arguments: * 0: Class Name - The classname of the vehicle to purchase diff --git a/addons/store/functions/fnc_changeFilter.sqf b/addons/store/functions/fnc_changeFilter.sqf index 885c370..20b353c 100644 --- a/addons/store/functions/fnc_changeFilter.sqf +++ b/addons/store/functions/fnc_changeFilter.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_changeFilter - * Author: J. Schmidt - * - * Description: - * Changes the filter of the store. + * Author: IDSolutions + * Changes the filter of the store * * Arguments: * 0: Control - The control that was changed diff --git a/addons/store/functions/fnc_changePayment.sqf b/addons/store/functions/fnc_changePayment.sqf index a4bee16..2aed96c 100644 --- a/addons/store/functions/fnc_changePayment.sqf +++ b/addons/store/functions/fnc_changePayment.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_changePayment - * Author: J. Schmidt - * - * Description: - * Changes the payment method of the store. + * Author: IDSolutions + * Changes the payment method of the store * * Arguments: * 0: Control - The control that was changed diff --git a/addons/store/functions/fnc_handleDelivery.sqf b/addons/store/functions/fnc_handleDelivery.sqf index e280070..e0eceb7 100644 --- a/addons/store/functions/fnc_handleDelivery.sqf +++ b/addons/store/functions/fnc_handleDelivery.sqf @@ -1,11 +1,10 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_handleDelivery - * Description: + * Author: IDSolutions * Handles the delivery timer and locker updates for purchased items * - * Parameters: + * Arguments: * 0: New Locker Contents * * Returns: @@ -13,6 +12,8 @@ * * Example: * [_newLocker] spawn forge_store_fnc_handleDelivery + * + * Public: No */ params [["_newLocker", [], [[]]]]; diff --git a/addons/store/functions/fnc_handlePurchase.sqf b/addons/store/functions/fnc_handlePurchase.sqf index d04f3ea..c947049 100644 --- a/addons/store/functions/fnc_handlePurchase.sqf +++ b/addons/store/functions/fnc_handlePurchase.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_handlePurchase - * Author: J. Schmidt - * - * Description: - * Handles the purchase of an item. + * Author: IDSolutions + * Handles the purchase of an item * * Arguments: * 0: Price - The price of the item diff --git a/addons/store/functions/fnc_initStore.sqf b/addons/store/functions/fnc_initStore.sqf index 4b76e73..5c19e57 100644 --- a/addons/store/functions/fnc_initStore.sqf +++ b/addons/store/functions/fnc_initStore.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_initStore - * Author: J. Schmidt - * - * Description: - * Initializes the store. + * Author: IDSolutions + * Initializes the store * * Arguments: * None diff --git a/addons/store/functions/fnc_openStore.sqf b/addons/store/functions/fnc_openStore.sqf index b60ba21..d54b4e9 100644 --- a/addons/store/functions/fnc_openStore.sqf +++ b/addons/store/functions/fnc_openStore.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_openStore - * Author: J. Schmidt - * - * Description: - * Opens the store. + * Author: IDSolutions + * Opens the store * * Arguments: * 0: Store - The store object diff --git a/addons/store/functions/fnc_selectProduct.sqf b/addons/store/functions/fnc_selectProduct.sqf index 0780a9a..17bcb34 100644 --- a/addons/store/functions/fnc_selectProduct.sqf +++ b/addons/store/functions/fnc_selectProduct.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_store_fnc_selectProduct - * Author: J. Schmidt - * - * Description: - * Selects a product from the store. + * Author: IDSolutions + * Selects a product from the store * * Arguments: * None diff --git a/addons/task/functions/fnc_attack.sqf b/addons/task/functions/fnc_attack.sqf index a17a2fd..53490ac 100644 --- a/addons/task/functions/fnc_attack.sqf +++ b/addons/task/functions/fnc_attack.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_attack - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an attack task. + * Author: IDSolutions + * Registers an attack task * * Arguments: * 0: ID of the task diff --git a/addons/task/functions/fnc_attackModule.sqf b/addons/task/functions/fnc_attackModule.sqf index 7ec5037..3b03da2 100644 --- a/addons/task/functions/fnc_attackModule.sqf +++ b/addons/task/functions/fnc_attackModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_attackModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the attack module. + * Author: IDSolutions + * Initializes the attack module * * Arguments: * 0: Logic - The logic object diff --git a/addons/task/functions/fnc_defuse.sqf b/addons/task/functions/fnc_defuse.sqf index 6dd4298..40b2233 100644 --- a/addons/task/functions/fnc_defuse.sqf +++ b/addons/task/functions/fnc_defuse.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_defuse - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers a defuse task. + * Author: IDSolutions + * Registers a defuse task * * Arguments: * 0: ID of the task diff --git a/addons/task/functions/fnc_defuseModule.sqf b/addons/task/functions/fnc_defuseModule.sqf index a7144b2..bd20a52 100644 --- a/addons/task/functions/fnc_defuseModule.sqf +++ b/addons/task/functions/fnc_defuseModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_defuseModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the defuse module. + * Author: IDSolutions + * Initializes the defuse module * * Arguments: * 0: Logic - The logic object diff --git a/addons/task/functions/fnc_destroy.sqf b/addons/task/functions/fnc_destroy.sqf index e3639a3..530ca23 100644 --- a/addons/task/functions/fnc_destroy.sqf +++ b/addons/task/functions/fnc_destroy.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_destroy - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an destroy task. + * Author: IDSolutions + * Registers an destroy task * * Arguments: * 0: ID of the task diff --git a/addons/task/functions/fnc_destroyModule.sqf b/addons/task/functions/fnc_destroyModule.sqf index 33a0480..8e8903e 100644 --- a/addons/task/functions/fnc_destroyModule.sqf +++ b/addons/task/functions/fnc_destroyModule.sqf @@ -1,10 +1,7 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_destroyModule - * Author: Creedcoder, J. Schmidt - * - * Description: + * Author: IDSolutions * Initializes the destroy module. * * Arguments: diff --git a/addons/task/functions/fnc_explosivesModule.sqf b/addons/task/functions/fnc_explosivesModule.sqf index 0eda50c..f4d5d6f 100644 --- a/addons/task/functions/fnc_explosivesModule.sqf +++ b/addons/task/functions/fnc_explosivesModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_explosivesModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the explosives module. + * Author: IDSolutions + * Initializes the explosives module * * Arguments: * 0: Logic - The logic object diff --git a/addons/task/functions/fnc_handler.sqf b/addons/task/functions/fnc_handler.sqf index 9c58ce9..dee870a 100644 --- a/addons/task/functions/fnc_handler.sqf +++ b/addons/task/functions/fnc_handler.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_handler - * Author: Creedcoder, J. Schmidt - * - * Description: - * Server side task handler/spawner. + * Author: IDSolutions + * Server side task handler/spawner * * Arguments: * 0: Type of task diff --git a/addons/task/functions/fnc_heartBeat.sqf b/addons/task/functions/fnc_heartBeat.sqf index 86ca90d..e9a44a9 100644 --- a/addons/task/functions/fnc_heartBeat.sqf +++ b/addons/task/functions/fnc_heartBeat.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_heartBeat - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers Entity and starts heartbeat. + * Author: IDSolutions + * Registers Entity and starts heartbeat * * Arguments: * 0: The entity diff --git a/addons/task/functions/fnc_hostage.sqf b/addons/task/functions/fnc_hostage.sqf index 58d7aaa..feadd78 100644 --- a/addons/task/functions/fnc_hostage.sqf +++ b/addons/task/functions/fnc_hostage.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_hostage - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an hostage task. + * Author: IDSolutions + * Registers an hostage task * * Arguments: * 0: ID of the task diff --git a/addons/task/functions/fnc_hostageModule.sqf b/addons/task/functions/fnc_hostageModule.sqf index 30de7b5..f2603dc 100644 --- a/addons/task/functions/fnc_hostageModule.sqf +++ b/addons/task/functions/fnc_hostageModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_hostageModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the hostage module. + * Author: IDSolutions + * Initializes the hostage module * * Arguments: * 0: Logic - The logic object diff --git a/addons/task/functions/fnc_hostagesModule.sqf b/addons/task/functions/fnc_hostagesModule.sqf index 8162c1d..d023362 100644 --- a/addons/task/functions/fnc_hostagesModule.sqf +++ b/addons/task/functions/fnc_hostagesModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_hostagesModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the hostage module. + * Author: IDSolutions + * Initializes the hostage module * * Arguments: * 0: Logic - The logic object diff --git a/addons/task/functions/fnc_hvt.sqf b/addons/task/functions/fnc_hvt.sqf index 9c0f96a..101ce29 100644 --- a/addons/task/functions/fnc_hvt.sqf +++ b/addons/task/functions/fnc_hvt.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_hvt - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an hvt task. + * Author: IDSolutions + * Registers an hvt task * * Arguments: * 0: ID of the task diff --git a/addons/task/functions/fnc_hvtModule.sqf b/addons/task/functions/fnc_hvtModule.sqf index 47653cf..ac3ac76 100644 --- a/addons/task/functions/fnc_hvtModule.sqf +++ b/addons/task/functions/fnc_hvtModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_hvtModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the hvt module. + * Author: IDSolutions + * Initializes the hvt module * * Arguments: * 0: Logic - The logic object diff --git a/addons/task/functions/fnc_makeHVT.sqf b/addons/task/functions/fnc_makeHVT.sqf index 479ce35..092a32f 100644 --- a/addons/task/functions/fnc_makeHVT.sqf +++ b/addons/task/functions/fnc_makeHVT.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_makeHVT - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an AI unit as a hvt. + * Author: IDSolutions + * Registers an AI unit as a hvt * * Arguments: * 0: The AI unit diff --git a/addons/task/functions/fnc_makeHostage.sqf b/addons/task/functions/fnc_makeHostage.sqf index 3132633..0bb8d43 100644 --- a/addons/task/functions/fnc_makeHostage.sqf +++ b/addons/task/functions/fnc_makeHostage.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_makeHostage - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an AI unit as a hostage/POW. + * Author: IDSolutions + * Registers an AI unit as a hostage/POW * * Arguments: * 0: The AI unit diff --git a/addons/task/functions/fnc_makeIED.sqf b/addons/task/functions/fnc_makeIED.sqf index 01354b4..ae7e28d 100644 --- a/addons/task/functions/fnc_makeIED.sqf +++ b/addons/task/functions/fnc_makeIED.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_makeIED - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an IED and starts countdown timer. + * Author: IDSolutions + * Registers an IED and starts countdown timer * * Arguments: * 0: The object diff --git a/addons/task/functions/fnc_makeObject.sqf b/addons/task/functions/fnc_makeObject.sqf index e97c0db..a0b0f8c 100644 --- a/addons/task/functions/fnc_makeObject.sqf +++ b/addons/task/functions/fnc_makeObject.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_makeObject - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an object. + * Author: IDSolutions + * Registers an object * * Arguments: * 0: The object diff --git a/addons/task/functions/fnc_makeShooter.sqf b/addons/task/functions/fnc_makeShooter.sqf index 905b7c7..656b943 100644 --- a/addons/task/functions/fnc_makeShooter.sqf +++ b/addons/task/functions/fnc_makeShooter.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_makeShooter - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an AI unit as a shooter. + * Author: IDSolutions + * Registers an AI unit as a shooter * * Arguments: * 0: The AI unit diff --git a/addons/task/functions/fnc_makeTarget.sqf b/addons/task/functions/fnc_makeTarget.sqf index 73bcce0..dbd501e 100644 --- a/addons/task/functions/fnc_makeTarget.sqf +++ b/addons/task/functions/fnc_makeTarget.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_makeTarget - * Author: Creedcoder, J. Schmidt - * - * Description: - * Registers an AI unit as a target. + * Author: IDSolutions + * Registers an AI unit as a target * * Arguments: * 0: The AI unit diff --git a/addons/task/functions/fnc_protectedModule.sqf b/addons/task/functions/fnc_protectedModule.sqf index 01ead61..bbb5fe4 100644 --- a/addons/task/functions/fnc_protectedModule.sqf +++ b/addons/task/functions/fnc_protectedModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_protectedModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the protected module. + * Author: IDSolutions + * Initializes the protected module * * Arguments: * 0: Logic - The logic object diff --git a/addons/task/functions/fnc_shootersModule.sqf b/addons/task/functions/fnc_shootersModule.sqf index d50a0c3..d7e3cea 100644 --- a/addons/task/functions/fnc_shootersModule.sqf +++ b/addons/task/functions/fnc_shootersModule.sqf @@ -1,11 +1,8 @@ #include "..\script_component.hpp" /* - * Function: forge_client_task_fnc_shootersModule - * Author: Creedcoder, J. Schmidt - * - * Description: - * Initializes the shooters module. + * Author: IDSolutions + * Initializes the shooters module * * Arguments: * 0: Logic - The logic object