mirror of
https://github.com/acemod/ACE3.git
synced 2025-07-26 23:58:53 +00:00
* run 'hemtt utils sqf case' * fix config as well * fix event casing * Update addons/towing/functions/fnc_attachRopePFH.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/refuel/functions/fnc_startNozzleInHandsPFH.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/rearm/functions/fnc_takeSuccess.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/rearm/functions/fnc_grabAmmo.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/medical_treatment/initSettings.inc.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/captives/functions/fnc_setSurrendered.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/captives/functions/fnc_handleZeusDisplayChanged.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/captives/functions/fnc_handlePlayerChanged.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/captives/functions/fnc_handlePlayerChanged.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/arsenal/functions/fnc_onArsenalOpen.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/arsenal/functions/fnc_onArsenalClose.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/spectator/functions/fnc_ui.sqf * Update addons/ui/XEH_clientInit.sqf * Update addons/ui/functions/fnc_setElements.sqf * Update addons/fcs/functions/fnc_getAngle.sqf * Update addons/fcs/functions/fnc_getAngle.sqf * Update addons/fcs/functions/fnc_getAngle.sqf * Update addons/captives/functions/fnc_handleZeusDisplayChanged.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/captives/functions/fnc_setHandcuffed.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/captives/functions/fnc_setHandcuffed.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/captives/functions/fnc_setSurrendered.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/common/functions/fnc_displayTextStructured.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/medical_treatment/initSettings.inc.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/medical_treatment/initSettings.inc.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> * Update addons/medical_treatment/initSettings.inc.sqf Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com> --------- Co-authored-by: PabstMirror <pabstmirror@gmail.com> Co-authored-by: johnb432 <58661205+johnb432@users.noreply.github.com>
31 lines
683 B
Plaintext
31 lines
683 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: johnb43
|
|
* Returns a config's addon.
|
|
*
|
|
* Arguments:
|
|
* 0: Config entry <CONFIG>
|
|
*
|
|
* Return Value:
|
|
* Addon name <STRING>
|
|
*
|
|
* Example:
|
|
* [configFile >> "CfgWeapons" >> "arifle_AK12_F"] call ace_common_fnc_getAddon
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
params ["_config"];
|
|
|
|
(uiNamespace getVariable QGVAR(addonCache)) getOrDefaultCall [_config, {
|
|
private _addons = configSourceAddonList _config;
|
|
|
|
// Return first addon
|
|
if (_addons isNotEqualTo []) then {
|
|
(configSourceModList (configFile >> "CfgPatches" >> _addons select 0)) param [0, ""]
|
|
} else {
|
|
// If nothing found at all, return ""
|
|
""
|
|
}
|
|
}, true]
|