From 326d22e02cdcb1e45d5b7c8ae2ddb1e2106fbdee Mon Sep 17 00:00:00 2001 From: Chase Hall Date: Sun, 13 Sep 2020 21:58:37 +0000 Subject: [PATCH] Add 'T7/Start.bat' --- T7/Start.bat | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 T7/Start.bat diff --git a/T7/Start.bat b/T7/Start.bat new file mode 100644 index 0000000..6a11cb0 --- /dev/null +++ b/T7/Start.bat @@ -0,0 +1,73 @@ +@echo off +:: BO3 Dedicated Server Launcher +:: Created By: LeonLionHeart & Chase (https://chasehall.net) + + +:: Your Game Server Port. +:: Make sure you Port Forward both TCP & UDP. +set GamePort=15001 + +:: Server Name/Description (in server browser) +set Name=Nexus^1Core^7 - Closed ^1Alpha^7 Server (1) | MW2RMM +set Desc=Coming Soon + +:: Playlist File +:: Sets the Playlist to use from the playlists.info file in the /machinecfg folder +set playlist=1 + +:: Mod Support +:: Sets the mod the server will load, usermaps is the default mod that can be run with user made maps. +:: Replace usermaps with mod ID to run a mod. +:: Example: fsgame=771672355 +:: No Mod: fsgame=usermaps +set fsgame=771672355 + +:: Private Server Password +:: Setting this will make your server password-protected. +set PrivPW= + +:: RCON Password +:: Used with tools like BO3 Remote Console/IW4MAdmin/B3. +:: We recommend IW4MAdmin. +set RCON=CHANGEME1337 + +:: lobbyTimerStatusStartInterval +:: Sets the wait time between maps in the lobby in millisecond. 60000ms = 60 seconds. +set lobbytimer=60000 + + +start BlackOps3_UnrankedDedicatedServer.exe +set sv_playlist %playlist% +set fs_game %fsgame% +set net_port %GamePort% +lobbyTimerStatusStartInterval %lobbytimer% +set live_steam_server_name "%Name%" +set live_steam_server_description "%Desc%" +set live_steam_server_password "%PrivPW%" +rcon_password "%RCON%" %* +exit + + + + + + +:: INFO BELOW :: + +:: Color Codes for Server Name +:: ^1 Red +:: ^2 Green +:: ^3 Yellow +:: ^4 Blue +:: ^5 Cyan +:: ^6 Pink +:: ^7 White +:: ^8 Depends on the map you playing. +:: ^9 Grey +:: ^0 Black + +:: Enables console log on the server +:: set g_log 1 + +:: Enables logging on the server, helpful for crashes or debug information. +:: Setting 1 will buffer the write and 2 will not. +:: set logfile 2 + +:: Allows you to manually define the IP address of your server. +:: Only advanced users should mess with this feature. +:: set net_ip + +:: Unofficial way to run a config for advanced users. You must place these congis in /zone +:: exec default_dedicated.cfg \ No newline at end of file