47 lines
1.5 KiB
Plaintext
47 lines
1.5 KiB
Plaintext
#include "script_component.hpp"
|
|
|
|
/*
|
|
* Function: xpdb_core_fnc_clearSave
|
|
* 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]
|
|
* Remove all saved data for given slot.
|
|
*
|
|
* Arguments:
|
|
* 0: ID of Slot <SCALAR> (default: nil)
|
|
*
|
|
* Return Value:
|
|
* N/A
|
|
*
|
|
* Examples:
|
|
* [] call xpdb_core_fnc_clearSave
|
|
* [1] call xpdb_core_fnc_clearSave
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
params [["_slot", 0, [0]]];
|
|
|
|
[EGVAR(db,debug), "xpdb_core_fnc_clearSave", "Clearing save...", true] call EFUNC(utils,debug);
|
|
|
|
if (isNil "_slot") then {
|
|
[EGVAR(db,debug), "xpdb_core_fnc_clearSave", "Clearing all saves.", true] call EFUNC(utils,debug);
|
|
{
|
|
if (_x select [0, 16] == "xpdb_armadbcore.") then { missionProfileNamespace setVariable [_x, nil] };
|
|
} forEach (allVariables missionProfileNamespace);
|
|
} else {
|
|
[EGVAR(db,debug), "xpdb_core_fnc_clearSave", format ["Clearing save for slot '%1'.", _slot], true] call EFUNC(utils,debug);
|
|
{
|
|
if (_x select [0, 17] == format ["xpdb_armadbcore.%1", _slot]) then { missionProfileNamespace setVariable [_x, nil] };
|
|
} forEach (allVariables missionProfileNamespace);
|
|
};
|
|
|
|
saveMissionProfileNamespace; |