Advertisement
Guest User

sourcebans.cfg

a guest
Apr 5th, 2014
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. /**
  2. * sourcebans.cfg
  3. *
  4. * This file contains settings for the SourceBans Source Server Plugin
  5. * @author SteamFriends Development Team
  6. * @version 0.0.0.$Rev: 74 $
  7. * @copyright SteamFriends (www.steamfriends.com)
  8. * @package SourceBans
  9. */
  10.  
  11. "SourceBans"
  12. {
  13. "Config"
  14. {
  15. // Website address to tell where the player to go for unban, etc
  16. "Website" "http://www.HIDDEN.com"
  17.  
  18. // Allow or disallow admins access to addban command
  19. "Addban" "1"
  20.  
  21. // Allow or disallow admins access to unban command
  22. "Unban" "1"
  23.  
  24. // The Tableprefix you set while installing the webpanel. (default: "sb")
  25. "DatabasePrefix" "sb"
  26.  
  27. // How many seconds to wait before retrying when a players ban fails to be checked. Min = 15.0 Max = 60.0
  28. "RetryTime" "15.0"
  29.  
  30. // How often should we process the failed ban queue in minutes
  31. "ProcessQueueTime" "5"
  32.  
  33. // Should the plugin automaticaly add the server to sourcebans
  34. // (servers without -ip being set on startup need this set to 0)
  35. "AutoAddServer" "0"
  36.  
  37. // Enable backing up config files after getting admins from database (1 = enabled, 0 = disabled)
  38. "BackupConfigs" "1"
  39.  
  40. // Enable admin part of the plugin (1 = enabled, 0 = disabled)
  41. "EnableAdmins" "1"
  42.  
  43. // Require the admin to login once into website
  44. "RequireSiteLogin" "0"
  45.  
  46. // This is the ID of this server (Check in the admin panel -> servers to find the ID of this server)
  47. "ServerID" "-1"
  48. }
  49.  
  50. /*
  51. * Generic menu options for if a reason isn't supplied in a ban
  52. * Without a supplied reason the ban will never be written to the database
  53. */
  54. "BanReasons"
  55. {
  56. "Freekill" "Freekill"
  57. "Brud på server regler" "Brud på server regler"
  58. "Ikke fra Danmark" "Ikke fra Danmark"
  59. "Camping" "Camping"
  60. "Mic spamming" "Mic spamming"
  61. "Ghosting" "Ghosting"
  62. "Reklame for andre servere" "Reklame for andre servere"
  63. }
  64.  
  65. /*
  66. * Submenu options for when "Hacking" is selected
  67. * If "Hacking" is removed from the menu above this will not be accessable
  68. */
  69. "HackingReasons"
  70. {
  71. }
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement