From 304a130d1b9cdf6b41583aa8ef686dd32c02b2da Mon Sep 17 00:00:00 2001 From: smt Date: Tue, 17 Mar 2015 00:50:02 +0000 Subject: [PATCH] added gamemode variable for gmodserver allows people to easily set their garry's mod server gamemode (default sandbox) --- GarrysMod/gmodserver | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 7697782fc..d571a9322 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -23,6 +23,7 @@ workshopcollectionid="" # Start Variables defaultmap="gm_construct" +gamemode="sandbox" maxplayers="16" port="27015" sourcetvport="27020" @@ -31,7 +32,7 @@ ip="0.0.0.0" # https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server fn_parms(){ -parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} +host_workshop_collection ${workshopcollectionid} -authkey ${workshopauth} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" +parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} +host_workshop_collection ${workshopcollectionid} -authkey ${workshopauth} +clientport ${clientport} +tv_port ${sourcetvport} +map ${defaultmap} +gamemode ${gamemode} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" } #### Advanced Variables ####