Help Vehicles reset on server restart?

Martin Jensen

New Member
Hello

I have a big problem on my server running DayZ 1.8.0.3..

It's not saving vehicles when I restart the server..

I have a few mods like admin tools, R3F tow, self bloodbag. And have made a few changes to loot files.. I also changed the mysql port to 3307. Because i had a other mysql and epoch running before, so i wanted to make sure there were no conflict..

Every thing looks fine players load up in mysql in navicat etc..

What can cause this?

I'm using BEC and this is my schedule .bat:

Code:
taskkill /im arma2oaserver.exe
taskkill /im bec.exe
taskkill /im DaRT.exe
 
timeout 60
 
 
:: start the server..
set dayzpath="C:\Dayz_Server\"
cd /d %dayzpath%
start "" "START_SERVER.bat"
 
timeout 10
:: start bec
set becpath="C:\Dayz_Server\BEC"
cd /d %becpath%
start "" "bec.exe" -f Config.cfg
 
 
timeout 10
:: start dart
set dartpath="C:\Users\Server\Desktop\DaRT\"
cd /d %dartpath%
start "" "DaRT.exe"
 
cls
exit
 
I think i've found the problem..

I can see in my log files, that my admin tools are generating errors in server_cleanup.sqf and server_updateObject.sqf..

So I've had to remove it, until I find out how rewrite the script to dayz 1.8..

Now the only errors in my log now is:

ERROR: server_playerSync: Cannot Sync Player

Which I guess nothing can be done about??

If anyone got admin working in 1.8.0.3, please help with how you setup the files above... thank you
 
Back
Top