Thanks for your comment mate glad it helped you. The server listings adder is not a software its just a batch file that i wrote to add my IP to the dzsa launcher periodically. you can do the same thing as long as you use Chrome. Here is my script; @echo off TITLE Server Listing Auto Adder COLOR 0A :AddListing cls echo Adding Server Listing to DayZ Launcher Server List... timeout 1 >nul start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2305 rem rp AoD Server start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2405 rem Namalsk Server start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2505 rem ChernobylZone Server start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2605 rem DayZone Server start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2705 rem Pripyat Server timeout 20 >nul goto KillChrome :KillChrome cls taskkill /f /im chrome.exe goto loopWait :loopWait FOR /L %%s IN (14400,-1,0) DO ( cls echo PLEASE DO NOT CLOSE ME! echo Adding server to launcher again in %%s seconds.. timeout 1 >nul ) goto AddListing
@@HarksModding Genius bro! Thanks!! Both my servers now running smooth and not crashing with shutdowns and restarts as they both used the same DZA.exe in the same folder!
@@HarksModding Thanks so tried the script and that's a great shortcut to DSA checker, but was talking about how you got the servers all nice and neat running on top of each other. The script opens up Chrome and updates the server which is still great but I was referring to the view you have of those servers running on the left hand side of the screen in the beginning of the video.
@Restplay yes it is the same process with arma 2 dayz epoch. You just need to change the app id in the batch files, so it will download the correct game server files also the paths and the exe names, dont forget to change also in bec config file. Im pretty busy this time of year with our sailboat but in the winter i can make a video about that game as well but as i say above it is essentially the same process if you just make the changes above.
@@restplay_ thanks for your comment mate I'll be sure to post a a2 dayz epcoh video around November time. Actually it's still our favourite dayz. Standalone is wack
This batch script creates a folder structure for a DayZ server in the directory where it's run. It prompts you for the server name and sets up the following folders: Main Server Folder: Named after the server you enter. Subfolders: Backup, BEC, ServerConfigs, ServerFiles, and a battleye folder inside ServerConfigs. After running, it organizes the necessary directories for server setup. @echo off rem Prompt for the server name set /p serverName="Enter the name of your DayZ server: " rem Set the base path where the GameServers folder will be created in the current directory set basePath=%cd%\%serverName% rem Create the main server folder mkdir "%basePath%" rem Create the subfolders mkdir "%basePath%\Backup" mkdir "%basePath%\BEC" mkdir "%basePath%\ServerConfigs" mkdir "%basePath%\ServerFiles" mkdir "%basePath%\ServerConfigs\battleye" echo Folder structure for DayZ server '%serverName%' has been created at %basePath%. pause
Great Video! thanks! Where you get that Server listing adder software?
Thanks for your comment mate glad it helped you. The server listings adder is not a software its just a batch file that i wrote to add my IP to the dzsa launcher periodically.
you can do the same thing as long as you use Chrome.
Here is my script;
@echo off
TITLE Server Listing Auto Adder
COLOR 0A
:AddListing
cls
echo Adding Server Listing to DayZ Launcher Server List...
timeout 1 >nul
start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2305 rem rp AoD Server
start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2405 rem Namalsk Server
start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2505 rem ChernobylZone Server
start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2605 rem DayZone Server
start "" dayzsalauncher.com/#/servercheck/82.33.12.219:2705 rem Pripyat Server
timeout 20 >nul
goto KillChrome
:KillChrome
cls
taskkill /f /im chrome.exe
goto loopWait
:loopWait
FOR /L %%s IN (14400,-1,0) DO (
cls
echo PLEASE DO NOT CLOSE ME!
echo Adding server to launcher again in %%s seconds..
timeout 1 >nul
)
goto AddListing
@@HarksModding Genius bro! Thanks!! Both my servers now running smooth and not crashing with shutdowns and restarts as they both used the same DZA.exe in the same folder!
@@HarksModding Thanks so tried the script and that's a great shortcut to DSA checker, but was talking about how you got the servers all nice and neat running on top of each other. The script opens up Chrome and updates the server which is still great but I was referring to the view you have of those servers running on the left hand side of the screen in the beginning of the video.
ah right those are just the dayz exe's and the respective bat file consoles@@ACR-Rambo
Hi is it possible to do with servers Arma 2 Dayz Epoch 1071?
@Restplay yes it is the same process with arma 2 dayz epoch. You just need to change the app id in the batch files, so it will download the correct game server files also the paths and the exe names, dont forget to change also in bec config file. Im pretty busy this time of year with our sailboat but in the winter i can make a video about that game as well but as i say above it is essentially the same process if you just make the changes above.
@@HarksModding Thanks for the reply, it will be very interesting to watch the new video. Thanks for helping us.👍👍👍
@@restplay_ thanks for your comment mate I'll be sure to post a a2 dayz epcoh video around November time. Actually it's still our favourite dayz. Standalone is wack
My congratulations my friend very well prepared and easy explanation note 1000 for the work and dedication to help the next I'm your fan!
Thanks bro glad it was a help for you!
Very good Harkness. Explained very well. I got it working today with your help, after a wasted day yesterday of infuriating yt videos
Thanks for your comments thats great im very glad i was able to help :)
Can you use the same steam ID and password for two DayZ servers?
Yes you can!. I have one account for my client to play with and one account for all my servers
awesome video bro!!!
thank you mate glad it helped you
BroVO Nice video bro!!!!!
thanks mate
This batch script creates a folder structure for a DayZ server in the directory where it's run. It prompts you for the server name and sets up the following folders:
Main Server Folder: Named after the server you enter.
Subfolders: Backup, BEC, ServerConfigs, ServerFiles, and a battleye folder inside ServerConfigs.
After running, it organizes the necessary directories for server setup.
@echo off
rem Prompt for the server name
set /p serverName="Enter the name of your DayZ server: "
rem Set the base path where the GameServers folder will be created in the current directory
set basePath=%cd%\%serverName%
rem Create the main server folder
mkdir "%basePath%"
rem Create the subfolders
mkdir "%basePath%\Backup"
mkdir "%basePath%\BEC"
mkdir "%basePath%\ServerConfigs"
mkdir "%basePath%\ServerFiles"
mkdir "%basePath%\ServerConfigs\battleye"
echo Folder structure for DayZ server '%serverName%' has been created at %basePath%.
pause
Dude my file are a mess compared to this xD
glad you like it mate. it can get confusing after the first few servers