Jump to content

Forums Announcement

Read-Only Mode for Announcements & Changelogs

Dear Survivors, we'd like to inform you that this forum will transition to read-only mode. From now on, it will serve exclusively as a platform for official announcements and changelogs.

For all community discussions, debates, and engagement, we encourage you to join us on our social media platforms: Discord, Twitter/X, Facebook.

Thank you for being a valued part of our community. We look forward to connecting with you on our other channels!

Stay safe out there,
Your DayZ Team

Kackarot58

Members
  • Content Count

    33
  • Joined

  • Last visited

Everything posted by Kackarot58

  1. [Bec] In the [Bec] block we define Rcon parameters such as Ip, port etc. All are needed for Bec to work. Ip = x.x.x.x if you can not use 127.0.0.1, set the ip to your game server. Port = int This is the port the game server is running on. BePath = string Set the full path to your Battleye directory for you current profile setup. This means the path to where your BeServer.cfg and bans.txt is located. If you have used -profiles or -bepath as startup parameters on your server you need to point it to that dir. The text in the red has been my problem all along..... Sorry. It has been solved!
  2. 1. Can I use my own Rcon Port or do I need to use 2302? 2. I have two servers, so i need to have two different Rcon ports? 3. [Bec] Ip = 127.0.0.1 Port = 2302 BePath = C:\Users\marti\Desktop\DAYZSERVER\battleye Admins = admins.xml Commands = commands.xml LogDir = Config This section above do I need to us my VM's Internal IP? Or do I use the 127.0.0.1? Wolv you have been amazing by the way! https://imgur.com/a/6YjDuZn
  3. Kackarot58

    [RELEASE]BEC for DayZ SA

    I believe I have it set up correctly. I just cant get it to connect now. Question: If I have the BEC running on the same pc as the server is, do I use 127.0.0.1 as the connecting Ip or do I use the PC's Internal IP? Also as goes for the Port number so I use 2302 or do I use the server's port number to the outside world? BESERVER.cfg RConPassword RestrictRCon 1 RConIP 127.0.0.1 RConPort 2302 Above is the contents
  4. Kackarot58

    [RELEASE]BEC for DayZ SA

    I am warmer! Any other suggestions https://imgur.com/a/ArJ2QO7
  5. Kackarot58

    [RELEASE]BEC for DayZ SA

    I have gotten this far... https://imgur.com/a/ruX5BML Do I put my server settings in these spots? # Set the ip to your server. normally 127.0.0.1 will be fine. Ip = 127.0.0.1 # Set the port to the server. default port is 2302 Port = 2302
  6. Kackarot58

    [RELEASE]BEC for DayZ SA

    My BEC cannot find my BEServer.cfg Everything else seems to start up correctly. The picture is of the correct file in my Batteye location https://imgur.com/a/s4hukvQ @echo off TITLE DayZ SA Server - Status COLOR 0A :: Variables:: ::DayZServer_64.exe path set DAYZ-SA_SERVER_LOCATION="C:\Program Files (x86)\Steam\steamapps\common\DayZServer" ::Bec.exe path set BEC_LOCATION="C:\Program Files (x86)\Steam\steamapps\common\DayZServer\BEC" :::::::::::::: echo Agusanz goto checksv pause :checksv tasklist /FI "IMAGENAME eq DayZServer_x64.exe" 2>NUL | find /I /N "DayZServer_x64.exe">NUL if "%ERRORLEVEL%"=="0" goto checkbec cls echo Server is not running, taking care of it.. goto killsv :checkbec tasklist /FI "IMAGENAME eq Bec.exe" 2>NUL | find /I /N "Bec.exe">NUL if "%ERRORLEVEL%"=="0" goto loopsv cls echo Bec is not running, taking care of it.. goto startbec :loopsv FOR /L %%s IN (30,-1,0) DO ( cls echo Server is running. Checking again in %%s seconds.. timeout 1 >nul ) goto checksv :killsv taskkill /f /im Bec.exe taskkill /f /im DayZServer_x64.exe goto startsv :startsv cls echo Starting DayZ SA Server. timeout 1 >nul cls echo Starting DayZ SA Server.. timeout 1 >nul cls echo Starting DayZ SA Server... cd "%DAYZ-SA_SERVER_LOCATION%" start DayZServer_x64.exe -config=serverDZ.cfg -port=777 -profiles=C:\Program Files (x86)\Steam\steamapps\common\DayZServer -dologs -adminlog -netlog -freezecheck -noFilePatching -BEpath=C:\Program Files (x86)\Steam\steamapps\common\DayZServer\battleye -cpuCount=6 FOR /L %%s IN (45,-1,0) DO ( cls echo Initializing server, wait %%s seconds to initialize Bec.. timeout 1 >nul ) goto startbec :startbec cls echo Starting Bec. timeout 1 >nul cls echo Starting Bec.. timeout 1 >nul cls echo Starting Bec... timeout 1 >nul cd "%BEC_LOCATION%" start Bec.exe -f Config.cfg goto checksv
×