How to make sure vehicles are respawning.

if it helps heres my StartServer.bat file
Code:
@echo off
echo.
echo Cleaning dead from database older than 7 days...
perl db_utility.pl --host 127.0.0.1 --user XXXX --pass XXXX --name XXXX --port 3306 --cleanup damaged
ping 127.0.0.1 -n 5 >NUL
echo.
echo.
echo.
echo Executing spawn script...
db_spawn_vehicles.pl --instance 1 --limit 900 --host 127.0.0.1 --user XXXX --pass XXXX --name XXXX --port 3306
ping 127.0.0.1 -n 5 >NUL
echo.
echo.
echo.
echo Starting server...
Start dayzbec.bat
"Expansion\beta\arma2oaserver.exe" -ip=x.x.x.x -port=2302 "-config=dayz_1.tavi\config.cfg" "-cfg=dayz_1.tavi\basic.cfg" "-profiles=dayz_1.tavi" -name=Reality "-mod=@reality_1.tavi;@Taviana" -noPause -noSound -cpuCount=2 -exThreads=1 -maxMem=2048
ping 127.0.0.1 -n 5 >NUL
exit

any idea why its not respawning in blown up vehicles, when it runs it says 0 fetched and 0 spawned
 
Back
Top