Guest User

Untitled

a guest
Jan 13th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 5.83 KB | None | 0 0
  1. customdb:
  2.   enabled: false                                  # Enable/disable custom database support. Leave this disabled if using a script such as phpBB.
  3.   autocreate: true                                 # Enable/disable automatic creation of the database tables and columns for a custom database.
  4.   table: authdb_users                              # Table name to use for your custom database.
  5.   userfield: username                              # Field/column name to use for storing user names.
  6.   passfield: password                              # Field/column name to use for storing user passwords.
  7.   emailfield:                          # Field/column name to use for storing user email addresses. Leave blank to disable email requirement.
  8.   emailrequired: false                             # Enable/disable registration email requirement.
  9.   encryption: md5                                  # Encription type to use for password hashing. Options are MD5, SHA1, and SHA512.
  10. #  saltfield: salt                                  # NOT IMPLEMENTED YET! Field/column name to use for storing the passwordsalt.
  11. #  hashformat: "{PASSWORD}{SALT}{NAME}"             # NOT IMPLEMENTED YET! Format/layout to use for the password hash.
  12. register:
  13.   enabled: true                                    # Enable/disable allowing users to register.
  14.   force: true                                      # Enable/disable forcing users to register.
  15.   delay: 4 seconds                                 # Amount of time before register message is shown to player.
  16.   timeout: 3 minutes                               # Amount of time a player has to register before the configured action is taken.
  17. login:
  18. #  enabled: true                                    # NOT IMPLEMENTED YET! Enable/disable players being able to login.
  19.   method: prompt                                   # Login method to use. Options are normal and prompt.
  20.   delay: 4 seconds                                 # Amount of time before login message is shown to player.
  21.   timeout: 3 minutes                               # Amount of time a player has to login before the configured action is taken.
  22.   tries: 3                                         # Number of allowed incorrect password tries.
  23.   action: kick                                     # Action to perform when a maximum number of password tries is reached. Currently only option is kick.
  24. link:
  25.   enabled: true                                    # Enable/disable username linking.
  26.   rename: true                                     # Enable/disable renaming users to linked name on link.
  27. unlink:
  28.   enabled: true                                    # Enable/disable username unlinking.
  29.   rename: true                                     # Enable/disable renaming users to original name on unlink.
  30. username:
  31.   minimum: 3                                       # Minimum number of characters a username can be.
  32.   maximum: 16                                      # Maximum number of characters a username can be.
  33. password:
  34.   minimum: 4                                     # Minimum number of characters a password can be.
  35.   maximum: 16                                      # Maximum number of characters a password can be.
  36. session:
  37.   enabled: true                                    # Enable/disable player sessions.
  38.   start: login                                     # When to start the player's session. Options are login and logoff.
  39.   length: 1 hour                                   # Length of the player's session. Can be any number of seconds, minutes, hours, or days.
  40.   protect: true                                    # Enable/disable protecting player from being logged out from another location.
  41. guest:
  42.   commands: false                                  # Enable/disable guest commands.
  43.   chat: false                                      # Enable/disable guest chat.
  44.   building: false                                  # Enable/disable guest building.
  45.   destruction: false                               # Enable/disable guest destruction.
  46.   movement: false                                  # Enable/disable guest movement.
  47.   interactions: false                              # Enable/disable guest interactions with objects.
  48.   inventory: false                                 # Enable/disable guest inventory usage.
  49.   drop: false                                      # Enable/disable guest being able to drop items.
  50.   pickup: false                                    # Enable/disable guest being able to pickup items.
  51.   health: false                                    # Enable/disable guest getting hurt.
  52.   pvp: false                                       # Enable/disable guest hurting players.
  53.   mobtargeting: false                              # Enable/disable mobs targeting guest.
  54.   mobdamage: false                                 # Enable/disable mob damage from guest.
  55. protection:
  56.   freeze:
  57.     enabled: true                                  # Enable/disable freezing players on join to prevent movement.
  58.     delay: 2 seconds                               # Amount of time before players are frozen and unable to move.
  59.   notify:
  60.     enabled: true                                  # Enable/disable protection message being sent to player.
  61.     delay: 3 seconds                               # Amount of time before protection message can be sent to player again.
  62. filter:
  63.   action: kick                                     # Action to perform when a username matches the filter. Options are kick and rename.
  64.   username: "`~!@#$%^&*()=+{[]}|\\:;\"<,>.?/ "    # Characters and symbols to check for in usernames. We recommend leaving this as is.
  65.  password: "$&\\\""                               # Characters and symbols to check for in passwords. We recommend leaving this as is.
  66.   whitelist: Contex,Wulfspider                     # Usernames to exclude from username and password filtering.
Add Comment
Please, Sign In to add comment