2023-02-12 12:44:00 +01:00
|
|
|
@echo off
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
2023-12-02 23:39:51 +01:00
|
|
|
::/// T7x Dedicated Server Configuration start-up file ///
|
2023-02-12 12:44:00 +01:00
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
::// //
|
|
|
|
::// Your Game Server Port. //
|
|
|
|
::// Make sure you Port Forward both UDP & TCP //
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
|
2023-03-13 18:26:48 -04:00
|
|
|
set GamePort=27017
|
2023-02-12 12:44:00 +01:00
|
|
|
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
::// Below edits are optional unless you run multiable servers or mods.//
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
2024-07-18 22:45:54 +02:00
|
|
|
::// Load a mod on your server using the Steam Workshop ID //
|
|
|
|
::// of the Mod. Example: ModfolderName=2833912385 //
|
2023-02-12 12:44:00 +01:00
|
|
|
::// //
|
2024-07-18 22:45:54 +02:00
|
|
|
::// Unload a mod on your server by removing the Steam //
|
|
|
|
::// Workshop ID. Example: ModfolderName= //
|
2023-02-12 12:44:00 +01:00
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
set ModFolderName=
|
|
|
|
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
::// Your edited server.cfg in the "zone" folder goes here... //
|
|
|
|
::// This is were you edit your hostname, rcon, inactivity, etc //
|
|
|
|
::// (Optional) //
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
set ServerFilename=server.cfg
|
|
|
|
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
:://DONE!! WARNING! Don't mess with anything below this line. SEROUSLY!//
|
|
|
|
::///////////////////////////////////////////////////////////////////////
|
|
|
|
|
2024-06-22 13:22:45 +02:00
|
|
|
start boiii.exe -dedicated +set fs_game "%ModFolderName%" +set net_port "%GamePort%" +set logfile 2 +exec %ServerFilename%
|