Testing Tags

This commit is contained in:
2026-06-26 19:12:03 +10:00
parent 4c6ccf2cb1
commit 4a71ad45c0
17 changed files with 1455 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#include "defines.h"
/*
Author: Bryan "Tonic" Boardwine
Description:
Updates the view distance dependant on whether the player
is on foot, a car or an aircraft.
*/
private ["_saveIndex","_saveName"];
_saveIndex = lbCurSel SAVES_LIST;
_saveName = ctrlText SLOT_NAME;
hint format["saveIndex: %1", _saveIndex];
SVAR_PNS [format["tawvd_slot_%1",_saveIndex],
[
_saveName,
tawvd_foot,
tawvd_car,
tawvd_air,
tawvd_drone,
tawvd_object,
tawvd_syncObject
]
];
saveProfileNamespace;
[] call TAWVD_fnc_openSaveManager;