Advertisement
Guest User

Configs

a guest
Sep 7th, 2011
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.85 KB | None | 0 0
  1. advanced.yml:
  2. customdb:
  3. enabled: true # Enable/disable custom database support. Leave this disabled if using a script such as phpBB.
  4. autocreate: false # Enable/disable automatic creation of the database tables and columns for a custom database.
  5. table: users # Table name to use for your custom database.
  6. userfield: nick # Field/column name to use for storing user names.
  7. passfield: pw # Field/column name to use for storing user passwords.
  8. emailfield: email # Field/column name to use for storing user email addresses. Leave blank to disable email requirement.
  9. emailrequired: false # Enable/disable registration email requirement.
  10. encryption: md5 # Encription type to use for password hashing. Options are MD5, SHA1, and SHA512.
  11. # saltfield: salt # NOT IMPLEMENTED YET! Field/column name to use for storing the passwordsalt.
  12. # hashformat: "{PASSWORD}{SALT}{NAME}" # NOT IMPLEMENTED YET! Format/layout to use for the password hash.
  13. register:
  14. enabled: false # Enable/disable allowing users to register.
  15. force: true # Enable/disable forcing users to register.
  16. delay: 4 seconds # Amount of time before register message is shown to player.
  17. timeout: 3 minutes # Amount of time a playerh as to register before the configured action is taken.
  18. login:
  19. # enabled: true # NOT IMPLEMENTED YET! Enable/disable players being able to login.
  20. method: prompt # Login method to use. Options are normal and prompt.
  21. delay: 4 seconds # Amount of time before login messaage is shown to player.
  22. timeout: 3 minutes # Amount of time a player has to login before the configured action is taken.
  23. tries: 3 # Number of allowed incorrect password tries.
  24. action: kick # Action to perform when a maximum number of password tries is reached. Currently only option is kick.
  25. link:
  26. enabled: true # Enable/disable username linking.
  27. rename: true # Enable/disable renaming users to linked name on link.
  28. unlink:
  29. enabled: true # Enable/disable username unlinking.
  30. rename: true # Enable/disable renaming users to original name on unlink.
  31. username:
  32. minimum: 3 # Minumum number of characters a username can be.
  33. maximum: 16 # Maximum number of characters a username can be.
  34. password:
  35. minimum: 6 # Minumum number of characters a password can be.
  36. maximum: 16 # Maximum number of characters a password can be.
  37. session:
  38. enabled: true # Enable/disable player sessions.
  39. start: login # When to start the player's session. Options are login and logoff.
  40. length: 60 minutes # Length of the player's session. Can be any number of seconds, minutes, hours, or days.
  41. protect: true # Enable/disable protecting player from being logged out from another location.
  42. guest:
  43. commands: false # Enable/disable guest commands.
  44. chat: true # Enable/disable guest chat.
  45. building: false # Enable/disable guest building.
  46. destruction: false # Enable/disable guest destruction.
  47. movement: false # Enable/disable guest movement.
  48. interactions: false # Enable/disable guest interactions with objects.
  49. inventory: false # Enable/disable guest inventory usage.
  50. drop: false # Enable/disable guest being able to drop items.
  51. pickup: false # Enable/disable guest being able to pickup items.
  52. health: false # Enable/disable guest getting hurt.
  53. pvp: false # Enable/disable guest hurting players.
  54. mobtargeting: false # Enable/disable mobs targeting guest.
  55. mobdamage: false # Enable/disable mob damage from guest.
  56. protection:
  57. freeze:
  58. enabled: true # Enable/disable freezing players on join to prevent movement.
  59. delay: 2 seconds # Amount of time before players are frozen and unable to move.
  60. notify:
  61. enabled: true # Enable/disable protection message being sent to player.
  62. delay: 3 seconds # Amount of time before protection message can be sent to player again.
  63. filter:
  64. action: kick # Action to perform when a username matches the filter. Options are kick and rename.
  65. username: "`~!@#$%^&*()-=+{[]}|\\:;\"<,>.?/ " # Characters and symbols to check for in usernames. We recommend leaving this as is.
  66. password: "$&\\\"" # Characters and symbols to check for in passwords. We recommend leaving this as is.
  67. whitelist: Contex,Wulfspider # Usernames to exclude from username and password filtering.
  68.  
  69.  
  70. basic.yml
  71. plugin:
  72. language:
  73. commands: English # Language you want to use for commands that matches a directory under translations.
  74. messages: English # Language you want to use for messages that matches a directory under translations. debugmode: false # Enable/disable debugging mode and additional console output.
  75. usagestats: true # Enable/disable usage stats reporting to CraftFire devs.
  76. logging: true # Enable/disable logging to files.
  77. logformat: yyyy-MM-dd # Filename format of the AuthDB debug and error log files.
  78. database:
  79. type: mysql # Database type/driver to use. Current options are MySQL and eBean (Bukkit persistence).
  80. host: localhost # MySQL server hostname, domain, IP, or localhost for local connections. MySQL only.
  81. port: 3306 # Port used for connecting to your MySQL server. This is usually 3306. MySQL only.
  82. username: *** # Username used to connect to your database. Only valid for MySQL.
  83. password: *** # Password used to connect to your database. MySQL only.
  84. name: minecraft # Name of the database you are connecting to. MySQL only.
  85. keepalive: true # Enable/disable keeping database connection alive. MySQL only.
  86. script:
  87. name: phpBB # Name of the script you are using.
  88. version: 3.0.8 # Version of the script you are using.
  89. tableprefix: phpbb_ # Database table prefix for the script, if you use one.
  90. # passwordsalt: # NOT IMPLEMENTED YET! Unique/custom password salt, if needed by the script.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement