lgsm-default.cfg 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // ****************************************************************************
  2. // *
  3. // CodenameCURE - server.cfg *
  4. // Version 100216 *
  5. // *
  6. // ****************************************************************************
  7. // ............................. Basic Settings ............................. //
  8. // Hostname for server.
  9. hostname "<hostname>"
  10. // RCON - remote console password.
  11. rcon_password "<rconpassword>"
  12. // Server password - for private servers.
  13. sv_password ""
  14. // Contact email for server sysop.
  15. sv_contact "email@example.com"
  16. // LAN Mode - If set the server will not show on the internet.
  17. // Default: sv_lan 0
  18. sv_lan 0
  19. // ............................... Map Cycles ............................... //
  20. // info: There are several predefined mapcycles available that are listed below.
  21. // You can also create your own custom mapcycle.
  22. // "mapcycle.txt" - all maps
  23. // "mapcycle_objective.txt" - objective maps only
  24. // "mapcycle_survival.txt" - survival maps only
  25. //
  26. mapcyclefile "mapcycle.txt"
  27. // ........................ Game Specific Commands ........................ //
  28. // info: any commands that only apply to this game.
  29. // Difficulty
  30. // 0 - Easy
  31. // 1 - Average
  32. // 2 - Skilled
  33. // 3 - Insane
  34. sv_difficulty "1"
  35. // ............................. Communication ............................. //
  36. // Enable communication over voice via microphone.
  37. // Default: sv_voiceenable 1
  38. sv_voiceenable 1
  39. // Players can hear all other players, no team restrictions.
  40. // Default: sv_alltalk 0
  41. sv_alltalk 1
  42. // ............................. Fast Download .............................. //
  43. // info: Allows custom maps to be downloaded to the client.
  44. // Allows clients to download custom maps and textures etc. from the server at 20 kbps.
  45. // Default: sv_allowdownload 1
  46. sv_allowdownload 1
  47. // Allows clients to download custom maps, textures etc. from a web server with no transfer limit.
  48. // Example:
  49. // server location: maps/custommap.bsp
  50. // web server location: http://example.com/custom/maps/custommap.bsp
  51. // sv_downloadurl "http://example.com/custom"
  52. // Default: sv_downloadurl ""
  53. sv_downloadurl ""
  54. // ................................ Ban List ............................... //
  55. // personal banlist based on user IDs.
  56. exec banned_user.cfg
  57. // personal banlist based on user IPs.
  58. exec banned_ip.cfg
  59. writeid
  60. writeip
  61. // ............................. Server Logging ............................. //
  62. //Enables logging to file, console, and udp < on | off >.
  63. log on
  64. // Log server bans in the server logs.
  65. // Default: sv_logbans 1
  66. sv_logbans 1
  67. // Echo log information to the console.
  68. // Default: sv_logecho 1
  69. sv_logecho 1
  70. // Log server information in the log file.
  71. // Default: sv_logfile 1
  72. sv_logfile 1
  73. // Log server information to only one file.
  74. // Default: sv_log_onefile 0
  75. sv_log_onefile 0