iw6-mod/cfg/!start_zm_horde_server.bat

31 lines
1.3 KiB
Batchfile
Raw Normal View History

2025-02-20 06:12:48 -05:00
@echo off
::///////////////////////////////////////////////////////////////////////
::// IW6-Mod Server Configuration startup file //
::///////////////////////////////////////////////////////////////////////
::// This config best view with Notepad++ or other non-windows notepad //
::///////////////////////////////////////////////////////////////////////
2025-02-20 07:04:07 -05:00
::// Your edited server_zm_horde.cfg goes in the "iw6/" folder //
2025-02-20 06:12:48 -05:00
::// This is were you edit your hostname, map & gamemodes from //
::///////////////////////////////////////////////////////////////////////
set cfg=server_zm_horde.cfg
set port=27016
set name="IW6 Horde 1"
::///////////////////////////////////////////////////////////////////////
::// You're done! WARNING! Do not mess with anything below this line //
::///////////////////////////////////////////////////////////////////////
set game_exe=iw6-mod.exe
2025-02-20 07:04:07 -05:00
title IW6 - %name% - Server restarter
2025-02-20 06:12:48 -05:00
echo Server "%name%" will load %cfg% and listen on port %port% UDP!
echo To shut down the server close this window first!
echo (%date%) - (%time%) %name% server start.
cd /D "%~dp0"
:server
start /wait /abovenormal %game_exe% -dedicated +set survival 1 +set net_port "%port%" +exec %cfg% +map_rotate
echo (%date%) - (%time%) WARNING: %name% server closed or dropped... server restarts.
goto server