I have built a small autoexec.cfg script for dedicated servers. Copy and paste this into your autoexec.cfg file:
For those of you who can't understand the code, here are some instructions:
Just a little quicky code I made. It's in early alpha, so it's of course VERY simple. Try it sometime.
Code:
alias start_match "map map90 -gametype match -force"
alias start_ctf "map map80 -gametype ctf -force"
alias start_coop "map map01 -gametype coop -force"
alias start_race "map map01 -gametype race -force"
alias start_tag "map map90 -gametype tag -force"
bind [ "say server shutting down at end map"
bind ] "say server shutting down"
bind \ "say using the server code designed by furyhunter600"
alias pmatch "say get ready for match!"
alias pctf "say get ready for capture the flag!"
alias pcoop "say get ready for cooperation!"
alias prace "say get ready for race!"
alias ptag "say get ready for tag!"
bind ' "pause; say pause toggled"
alias kickblaster "say /me is loading kickblaster"
For those of you who can't understand the code, here are some instructions:
- To change game modes, type "start_*typename*" in the console, where as *typename* is replaced with either match, ctf, coop, race or tag.
- To tell the people in your server to prepare for a mode, type "p*" in the console, where * is replaced with match, ctf, coop, race or tag.
- To tell people that the server will shutdown on next map, press the [ key.
- To tell people that the server is shutting down, press the ] key.
- To tell people that the server is running on my code, press the \ key. You must do this upon server shutdown as to give credit.
- To pause the game, press the ' key.
- To warn someone that they could get kicked, type "kickblaster" in the console.
Just a little quicky code I made. It's in early alpha, so it's of course VERY simple. Try it sometime.