Jump to content

__RaDaR__

Members
  • Content Count

    15
  • Joined

  • Last visited

Community Reputation

2 Neutral

About __RaDaR__

  • Rank
    Scavenger

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. __RaDaR__

    cfgplayerspawnpoints.xml Spawn in buildings?

    Yes I have given that a try without any success, I still spawn outside the building I will give it another go.
  2. Anyone know if it’s possible to add spawn points for players to spawn in buildings? I have added building spawn points to the cfgplayerspawnpoints.xml but I always spawn outside them. Thx
  3. __RaDaR__

    Backing Up Server

    DrZeddy, Looks good do you have an option to only retain backup files for X number of days? otherwise you could have months worth of backups bloating the server. Good work man, I am looking forward to having a look at this.
  4. __RaDaR__

    Server Persistance Still Broken

    My experience running DayZ servers, if the server restarts regularly (say every 4 hours) it.s much less likely to crash and cause issues with the persistence files. Setup BEC and scheduled restarts on your server. RaDar..
  5. __RaDaR__

    People asking about server backup

    Yes, have the backup script run 2 seconds after server restart. RaDaR...
  6. __RaDaR__

    People asking about server backup

    This is the small snippet script to kill the server. @echo off TITLE DayZ Kill Server Script taskkill /im DayZServer_x64.exe running delage64.exe "c:\backup\*.*" 20 /recurse /rd Will delete all files, directories and sub directories older than 20 days this is purley for good houskeeping. Hope that helps RaDaR
  7. __RaDaR__

    Tent damage

    Did not know that..... RaDaR
  8. __RaDaR__

    Delete all vehicle in server

    In the types.xml file change the following <type name="OffroadHatchback"> <nominal>0</nominal> <lifetime>3</lifetime> <restock>1800</restock> <min>0</min> <quantmin>-1</quantmin> <quantmax>-1</quantmax> <cost>100</cost> <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/> </type> to <type name="OffroadHatchback"> <nominal>0</nominal> <lifetime>3</lifetime> <restock>1800</restock> <min>0</min> <quantmin>-1</quantmin> <quantmax>-1</quantmax> <cost>100</cost> <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="0" count_in_player="0" crafted="0" deloot="0"/> </type> You can also do the same with the doors wheels and trunk ect. Hope this helps RaDaR
  9. __RaDaR__

    Persistence Files?

    I have had no issues restarting the server every 4 hours seems to have stopped it falling over as much if atall. RaDaR
  10. __RaDaR__

    People asking about server backup

    This is my server backup script you can call 2 seconds after a restart in your BEC Scheduler.xml see below. @echo off for /f "delims=" %%a in ('wmic OS Get localdatetime ^| find "."') do set dt=%%a set YYYY=%dt:~0,4% set MM=%dt:~4,2% set DD=%dt:~6,2% set HH=%dt:~8,2% set Min=%dt:~10,2% set Sec=%dt:~12,2% set stamp=dayz_Server_Backup_%YYYY%%MM%%DD%@%HH%%Min% cd C:\backup mkdir %stamp% cd %stamp% xcopy c:\dayz\mpmissions\dayzOffline.chernarusplus\storage_1\*.* /s <job id='27'> <day>1,2,3,4,5,6,7</day> <start>23:55:00</start> <runtime>000000</runtime> <loop>0</loop> <cmd>say -1 SERVER RESTARTING IN 5 MINUTES</cmd> </job> <job id='28'> <day>1,2,3,4,5,6,7</day> <start>23:59:00</start> <runtime>000000</runtime> <loop>0</loop> <cmd>say -1 SERVER RESTARTING IN 1 MINUTE</cmd> </job> <job id='29'> <day>1,2,3,4,5,6,7</day> <start>23:59:30</start> <runtime>000000</runtime> <loop>0</loop> <cmd>say -1 SERVER RESTARTING IN 30 SECONDS</cmd> </job> <job id='30'> <day>1,2,3,4,5,6,7</day> <start>00:00:01</start> <runtime>000000</runtime> <loop>0</loop> <cmd>C:\scripts\kill-dayz.bat</cmd> </job> <job id='31'> <day>1,2,3,4,5,6,7</day> <start>00:00:03</start> <runtime>000000</runtime> <loop>0</loop> <cmd>C:\scripts\backup.bat</cmd> </job> Then run this small delage64 script once a day this will limit your backups to only 20 days worth. Download DelAge32/64 &nbsp;2.55 Here @echo off delage64.exe "c:\backup\*.*" 20 /recurse /rd Hope this helps. RaDaR
  11. __RaDaR__

    Persistence Files?

    Here is my backup script you can run it run it directly after the server restart command in BEC Scheduler.xml @echo off for /f "delims=" %%a in ('wmic OS Get localdatetime ^| find "."') do set dt=%%a set YYYY=%dt:~0,4% set MM=%dt:~4,2% set DD=%dt:~6,2% set HH=%dt:~8,2% set Min=%dt:~10,2% set Sec=%dt:~12,2% set stamp=GOB_Server_Backup_%YYYY%%MM%%DD%@%HH%%Min% cd C:\backup mkdir %stamp% cd %stamp% xcopy c:\dayz\mpmissions\dayz.chernarusplus\*.* /s <job id='0'> <day>1,2,3,4,5,6,7</day> <start>23:59:30</start> <runtime>000000</runtime> <loop>0</loop> <cmd>say -1 SERVER RESTARTING IN 30 SECONDS</cmd> </job> <job id='1'> <day>1,2,3,4,5,6,7</day> <start>00:00:01</start> <runtime>000000</runtime> <loop>0</loop> <cmd>path to script\kill-dayz.bat</cmd> </job> <job id='2'> <day>1,2,3,4,5,6,7</day> <start>00:00:03</start> <runtime>000000</runtime> <loop>0</loop> <cmd>path to script\backup.bat</cmd> </job> Radar...
  12. __RaDaR__

    Server restart

    Or you could do this in the Scheduler.xml <job id='21'> <day>1,2,3,4,5,6,7</day> <start>23:55:00</start> <runtime>000000</runtime> <loop>0</loop> <cmd>say -1 SERVER RESTARTING IN 5 MINUTES</cmd> </job> <job id='22'> <day>1,2,3,4,5,6,7</day> <start>23:59:00</start> <runtime>000000</runtime> <loop>0</loop> <cmd>say -1 SERVER RESTARTING IN 1 MINUTE</cmd> </job> <job id='23'> <day>1,2,3,4,5,6,7</day> <start>00:00:00</start> <runtime>000000</runtime> <loop>0</loop> <cmd>C:\scripts\kill-dayz.bat</cmd> </job> And this would be the kill script @echo off TITLE DayZ kill server script taskkill /im DayZServer_x64.exe If you dont see the Schedule output in the BEC console then you need to correct the Scheduler.xml syntax. It should look like this Copyright (C) by Stian Mikalsen Email : stianmikalsen@hotmail.com Web : http://www.ibattle.org Remember to donate for more great updates! --------------------------------------------- 08:09:33 : Please wait... Connecting to the Server when the Timeout has expired! 08:10:37 : Connecting to Battleye server 127.0.0.1:2302 08:10:37 : Scheduling 24 tasks 08:10:37 : RCon admin #0 (127.0.0.1:58627) logged in NOTE THE: 08:10:37 : Scheduling 24 tasks Hope this helps. RaDar
  13. __RaDaR__

    How to find and join Dayz 1.0 LAN server?

    Same issue here.
  14. __RaDaR__

    Keybindings?????

    Keybinds for lefty players, most of us use the arrow keys for move. Solution required?
  15. __RaDaR__

    Server files release update

    Personally I don't find that surprising
×