Member
Last active 3 years ago
I noticed that there are units which spawn at 0,0 and completely off the map. Does this indicate that it needs to be reindexed? Also I tried testing persistence and the mission time saved but a building I destroyed was no longer destroyed when I reloaded the mission. I have @aliveserver running on my linux server and logged in as admin, used server save and exit, waited for it to complete, then relaunched the server.
Hmmm I think I might have a similar problem, I logged in as admin and used server exit and waited until it finished saving everything. I then relaunched the server and the building I destroyed was no longer destroyed upon loading?
also does anyone see anything unusual in my rpt? Im really stuck and I dont see anything that stands out
Ahhh awesome thanks! I always thought mission persistence was saved to the cloud? In ALiVE data I have database source set to the cloud. So objectives, unit location, virtual layer, logistics, etc has always been saved locally?
Oh also I want it to save to the ALiVE DB as its on a dedicated server so id want
["MyCustomVariable", _value] call ALiVE_fnc_setData //will save to the Cloud on next Server Save & Exit
_value = ["MyCustomVariable"] call ALiVE_fnc_getData //will load on next mission start or when command is executed
then right?
or would I use
900 call ALiVE_fnc_setData
in my init.sqf?
Perfect thanks! So id just use
900 call ALiVE_fnc_AutoSave_PNS //where 900 is the save interval in seconds
and not
-1 call ALiVE_fnc_AutoSave_PNS //run at any time will disable autosave
to keep it saving every 15 minutes?
Awesome thanks! So if I put
["MyCustomVariable", _value] call ALiVE_fnc_setData
_value = ["MyCustomVariable"] call ALiVE_fnc_getData
in my init.sqf it will save and then load every time the server gets restarted?
Also I have had a few weird instances of being on a hill for instance for like 15 minutes and then all of a sudden tanks spawn right on my position?
Awesome thanks! Is there a way to use the server exit to save for persistence automatically?