Advertisement
Guest User

Untitled

a guest
Mar 24th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. lockdown: false
  2. lockdown-reason: "Server is currently under construction."
  3.  
  4. max-warnings: 3
  5. #3 days
  6. warn-expirey-in-minutes: 43200
  7.  
  8. #Accepts colorcodes. (v1.2)
  9. default-reason: "Misconduct"
  10. #Appeal-message accepts color codes, like &a and &4... Set it to "" to disable this. Accepts new line characters, just add \n where you want a new line.
  11. appeal-message: "&9Appeal at the Forums: &ahttp://fatecrafters.org/forums/appeals.19/"
  12.  
  13. #The two char colors used that STAFF will see.
  14. #Usually, primary = text, and secondary = variables (Like ban reason)
  15. #0-9,a-f are valid. Also any Bukkit ChatColor is valid (Eg RED, AQUA, DARK_GRAY)
  16. color:
  17. primary: 7
  18. secondary: d
  19.  
  20.  
  21. #This applies to kick, ban, and anything else.
  22. kick-colors:
  23. #0-9,a-f are valid. Also any Bukkit ChatColor is valid (Eg RED, AQUA, DARK_GRAY)
  24. message: c #"You have been banned for:"
  25. reason: c #"Misconduct"
  26. regular: 4 #"By"
  27. banner: 4 #"Netherfoam"
  28. time: 9 #4 hours 59 minutes remaining.
  29.  
  30.  
  31. chat-commands:
  32. - me
  33. - say
  34. - m
  35. - msg
  36. - w
  37. - whisper
  38. - afk
  39.  
  40. #Should we notify players with maxbans.notify whenever a banned player tries (fails) to join?
  41. notify: true
  42. #Should we verify names have the letters (A-Z,a-z,0-9 and _) only and are valid?
  43. filter-names: true
  44.  
  45. #Should we use the DNS blacklist?
  46. dnsbl:
  47. #Should we use this? Setting it to false disables DNSBL entirely.
  48. use: false
  49. #The DNSBL servers we should use to look up. More servers = Slower results.
  50. #Each server takes approx 4 seconds to respond. Use http://dnsbl.info to find
  51. #More servers, if you like.
  52. #DNSBL results are cached for 1 week, then expire (Are deleted).
  53. #This is how MaxBans checks for proxied IPs
  54. # 1. Have we looked the IP up on DNSBL before, and has it not expired? If so go to 3
  55. # 2. Start IP lookup, this takes a few seconds...
  56. # 3. If the IP is not a proxy, stop checking, they're allowed, do not proceed to step 4.
  57. # 4. Take appropriate action (Kick, notify) if any.
  58. servers:
  59. - bl.spamcop.net
  60. - sbl.spamhaus.org
  61. #Should we notify players with maxbans.notify when a player is joining with a proxy IP?
  62. notify: true
  63. #Should we kick players who are discovered to have proxy IPs?
  64. kick: true
  65.  
  66. # Sync is an advanced feature of MaxBans.
  67. # It only applies to server owners who want to BAN/etc Players using a WEBPAGE, such as PHP Script
  68. # Or owners who want two servers to have the SAME banlist!
  69. # This option is in BETA! I take no responsibility if it breaks, though I will endeaver to fix it.
  70. sync:
  71. #Should we use Sync? Setting this to false disables it entirely :)
  72. use: false
  73. #Is this server the Sync server? Otherwise it's a client.
  74. server: false
  75. #The host of the Sync server, if this is a client.
  76. host: 127.0.0.1
  77. #The port of the Sync server.
  78. port: 2711
  79. #The password required to join.
  80. pass: ChangeMeNow
  81. #How many times should the Syncer try to ping the SyncServer
  82. #Before giving up?
  83. tries: 120
  84.  
  85. database:
  86. mysql: true
  87. user: ****
  88. pass: ****
  89. host: 127.0.0.1
  90. port: 3306
  91. name: minecraft
  92. read-only: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement