Browse Source
To add on the instruction page: To get the workshop auth code, go to http://steamcommunity.com/dev/apikey and generate a code. To get the workshop collection id, take the URL, for example http://steamcommunity.com/sharedfiles/filedetails/?id=123456789, and use the trailing numbers for the id value.pull/103/head
1 changed files with 6 additions and 2 deletions
@ -16,6 +16,10 @@ email="[email protected]" |
|||||
steamuser="anonymous" |
steamuser="anonymous" |
||||
steampass="" |
steampass="" |
||||
|
|
||||
|
# Workshop Variables |
||||
|
workshopauth="" |
||||
|
workshopcollectionid="" |
||||
|
|
||||
# Start Variables |
# Start Variables |
||||
defaultmap="gm_construct" |
defaultmap="gm_construct" |
||||
maxplayers="16" |
maxplayers="16" |
||||
@ -26,7 +30,7 @@ ip="0.0.0.0" |
|||||
|
|
||||
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server |
# https://developer.valvesoftware.com/wiki/Command_Line_Options#Source_Dedicated_Server |
||||
fn_parms(){ |
fn_parms(){ |
||||
parms="-game garrysmod -strictportbind -ip ${ip} -port ${port} +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} +servercfgfile ${servercfg} -maxplayers ${maxplayers}" |
||||
} |
} |
||||
|
|
||||
#### Advanced Variables #### |
#### Advanced Variables #### |
||||
|
Loading…
Reference in new issue