#include "script_component.hpp" /* * Function: xpdb_core_fnc_loadData * Author: NikolaiF90, J.Schmidt * Edit: 07.27.2024 * Copyright © 2024 NikolaiF90, J.Schmidt, All rights reserved * * Do not edit without permission! * * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivative 4.0 International License. * To view a copy of this license, vist https://creativecommons.org/licenses/by-nc-nd/4.0/ or send a letter to Creative Commons, * PO Box 1866, Mountain View, CA 94042 * * [Description] * Save data in missionProfileNamespace using specified key, value, and slot. * * Arguments: * 0: Name of key (default: "") * - 0: Name of key * - 1: Default Value if isNil key * 2: Slot number to save value to (default: 0) * * Return Value: * The return value * * Examples: * ["name", 1] call xpdb_core_fnc_loadData * [["name", name player], 1] call xpdb_core_fnc_loadData * * Public: Yes */ params [["_key", "", [[], ""]], ["_slot", 0, [0]]]; private _return = []; if (_key isEqualType "") then { private _result = format ["%1.%2.%3", EGVAR(db,prefix), _slot, _key]; _return = missionProfileNamespace getVariable _result; }; if (_key isEqualType []) then { private _result = format ["%1.%2.%3", EGVAR(db,prefix), _slot, _key # 0]; _return = missionProfileNamespace getVariable [_result, _key # 1]; }; [EGVAR(db,debug), "xpdb_core_fnc_loadData", format ["Key loaded '%1'.", _key], true] call EFUNC(utils,debug); _return;