diff --git a/T7/Start.bat b/T7/Start.bat index 1ebd339..af1022d 100644 --- a/T7/Start.bat +++ b/T7/Start.bat @@ -1,12 +1,25 @@ @echo off :: BO3 Dedicated Server Launcher :: Created By: LeonLionHeart & Chase (https://chasehall.net) +:: Special endorsements (https://nexuscore.us/) :: Your Game Server Port. :: Make sure you Port Forward both TCP & UDP. set GamePort=15001 +:: 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 + :: Server Name/Description (in server browser) set Name=Nexus^1Core^7 - Closed ^1Alpha^7 Server (1) | MW2RMM set Desc=Coming Soon @@ -18,6 +31,8 @@ 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. +:: !!! YOU MUST BE SIGNED INTO A STEAM ACCOUNT FOR MODS TO DOWNLOAD !!! +:: To the line above, you can use Steam as a service or use the Steam client itself. Workshop anonymous downloads are broken for the T7 dedicated server. :: Example: fsgame=771672355 :: No Mod: fsgame=usermaps set fsgame=771672355 @@ -35,32 +50,16 @@ set RCON=CHANGEME1337 :: Sets the wait time between maps in the lobby in millisecond. 60000ms = 60 seconds. set lobbytimer=60000 +:: Enables console log on the server +:: Basically g_log on older CODs but super broken. It does not generate a separate log if it is defined. +:: This is what is required for IW4MAdmin to work. However, RaidMax is still testing T7. +set consolelog=1 -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%" %* +start BlackOps3_UnrankedDedicatedServer.exe +set sv_playlist %playlist% +set fs_game %fsgame% +set g_log %consolelog% +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%" %* :: Please do not touch the line above unless you know you are doing. 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 +:: EXTRA INFO BELOW :: :: Enables logging on the server, helpful for crashes or debug information. :: Setting 1 will buffer the write and 2 will not.