If a Zeus or Game Master attempts to save a loadout on an unit that has been deleted. Then his $ProfileName.vars.Arma3Profile becomes
corrupted which causes the [Virtual Arsenal] to fail. Rendering the user unable to open the (Save) or (Load) popup menus. This corruption
is persistent across the board for the respective profile.
Users affected by this has two options:
- Create a completely new profile which causes the player to lose his progress on servers such as King of the Hill or;
- Enter the [Eden Editor] and run the following code. Note that YOU WILL LOSE YOUR ARSENAL LOADOUTS when you run the code.
TRUE spawn { { if (['bis_fnc_saveInventory',_x,FALSE] call BIS_fnc_inString) then { profileNamespace setVariable [_x,nil]; }; } count (allVariables profileNamespace); saveProfileNamespace; }; profileNamespace setVariable ['BIS_fnc_arsenal_face',nil]; saveProfileNamespace; profilenamespace setvariable ["bis_fnc_saveInventory_data",[]]; saveProfileNamespace;
Code credit goes to Quiksilver.