Arma 3
[SP/COOP 30] Ravage Mayhem Tour: Cam Lao Nam
Recaldy  [developer] 10 Mar @ 1:54pm
Saving and loading the Garage
Scenario/Mod uses ONE garage capacity.

These commands must be run by logged in admins.

Saving the garage:
//run using SERVER EXEC to SAVE the garage for lading after a mission restart or mission swap private _saveData = [] call HR_Garage_fnc_getSaveData; profileNamespace setVariable ["MyRMTSOGGarage", _saveData];

Loading the garage:
//run using SERVER EXEC to LOAD your saved garage if (isNil {profileNamespace getVariable "MyRMTSOGGarage"}) then { profileNamespace setVariable ["MyRMTSOGGarage", nil]; }; _saveData = (profileNamespace getVariable "MyRMTSOGGarage"); [_saveData] call HR_Garage_fnc_loadSaveData;

Deleting the garage save:
Empty the garage and then save the garage.
Last edited by Recaldy; 10 Mar @ 1:55pm