Advertisement
Guest User

server.cfg

a guest
Oct 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.52 KB | None | 0 0
  1. // Modern Warfare 3 Server Configuration
  2.  
  3.  
  4. //////////////////////////////////////////////////////////
  5. // Server command-line parameters (this section is for documentation only)
  6.  
  7. // Specify server configuration file (this file)
  8. //+set sv_config "filename" (default "server.cfg")
  9.  
  10. // Specify server visibility (1 = LAN, 2 = Internet (default) )
  11. //+set dedicated 1
  12.  
  13. // Open game port (Steam-visible server game port)
  14. //+set net_queryPort 27014
  15.  
  16. // Secure game port
  17. //+set net_port 27015
  18.  
  19. // Steam authentication port
  20. //+set net_authPort 8766
  21.  
  22. // Steam master server (server browser) port
  23. //+set net_masterServerPort 27016
  24.  
  25.  
  26.  
  27. //////////////////////////////////////////////////////////
  28. // Server.cfg-configurable settings
  29.  
  30. // Server host name. This should always be set by the server admin.
  31. seta sv_hostname "Pluto-Server CHANGE MY NAME"
  32.  
  33. // Dedicated server play list (DSPL) specifying server map rotation.
  34. // Valid game options are controlled via DSR (dedicated server recipe) specified in the DSPL.
  35. seta sv_maprotation "default"
  36.  
  37. // Maximum number of clients that may connect to this server (range 1-18)
  38. seta sv_maxclients 16
  39.  
  40. // Server password. If set, users will be prompted on join attempt.
  41. seta g_password ""
  42.  
  43. // Maximum number of private clients allowed on the server (range 0-18 (clamped to sv_maxclients) )
  44. seta sv_privateClients 0
  45.  
  46. // Password for the private slots on this server. If set, users will be prompted on join attempt.
  47. // Users providing this password will have access to all slots.
  48. // Users providing an incorrect password will have access to the (sv_maxClients - sv_privateClients) public slots.
  49. seta sv_privatePassword ""
  50.  
  51. // Remote console password. If set, users will have access to a remote console, allowing server administration from a connected client.
  52. seta rcon_password "SETMEPLEASE"
  53.  
  54. // Server voice chat configuration ( 0 = "No Chat", 1 = "Free Chat", 2 = "Team Chat" (default) )
  55. seta sv_voice 2
  56.  
  57. // Toggle voting for [player kick/map restart/next map] (0 or 1 (default) )
  58. seta g_allowVote 1
  59.  
  60. // Toggle allowing dead players to chat with living players (0 (default) or 1)
  61. seta g_deadChat 0
  62.  
  63. // Time in seconds before the server will kick a user for inactivity (range 0 - 10000)
  64. seta g_inactivity 120
  65.  
  66. // Time in seconds for a player temporary ban (on kick/tempban) (range 0 - 3600)
  67. seta sv_kickBanTime 300
  68.  
  69. // Toggle flood protection (throttling of user commands - should be enabled for non-password-protected Internet servers) (0 or 1 (default))
  70. seta sv_floodProtect 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement