Guest User

Untitled

a guest
Jul 7th, 2018
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.25 KB | None | 0 0
  1. forum:
  2. # Want to use information from a custom profile field instead of the user's forum username?
  3. multitable: true
  4. # Want to use a comma seperated list of additional groups to assign your member?
  5. use-additional-groups: true
  6. # If we're using phpBB3 or a forum system like it, then it's a pain in the arse to find a user's group! Are we using phpBB3?
  7. use-group-table: false
  8. # If you'd like, Warrant can look at if the member's "banned-field" is true or false and keep 'em out if it's true
  9. use-boolean-ban: true
  10. # Bung in the info on where to look for the member data
  11. usertable:
  12. # Name of the member data table
  13. name: xf_user
  14. # Field to find the group id to match those set in the "groups" section of this file
  15. group-field: user_group_id
  16. # If we're not using multitable mode, then which field should we look for the member's minecraft username in?
  17. username-field: field_value
  18. # And if "use-additional-groups" is enabled... where is the comma seperated list of additional groups?
  19. additional-groups-field: secondary_group_ids
  20. # Has a player been banned? If "use-boolean-ban" is true, this field will be used to determine if the user can come in or not. OVERRIDES WHITELIST!
  21. banned-field: is_banned
  22. # If "use-additional-groups" is on, then we're going to need a way to link this user to their extra profile fields
  23. key-field: user_id
  24. # This part ONLY counts if you've used 'multitable'. Make sure to match the key-fields up!
  25. profiletable:
  26. # Name of the custom profile fields table
  27. name: xf_user_field_value
  28. # If we're going to match up the custom fields to the user's member data, then we're going to need this to match the "key-field" in the other table for each member
  29. key-field: user_id
  30. # Since we're in multitable mode, we can have a look in this table for their minecraft name instead. Clever isn't it?
  31. minecraft-name-field: field_value
  32. # This ONLY applies if you want to use a phpBB3 style group table
  33. grouptable:
  34. name: xf_user_group_relation
  35. key-field: user_id
  36. group-field: user_group_id
  37. # Stick your database info here
  38. database:
  39.     host: '***.***.***.***'
  40.     port: '****'
  41.     db: '********'
  42.     user: '*******'
  43.     pass: '******'
  44. # Which worlds on your server should Warrant affect the permissions for?
  45. worlds:
  46.     - world
  47.     - world_nether
  48.     - world_the_end
  49.     - Creative
  50. # What you gonna tell peeps that aren't whitelisted? (PS, telling them to go and register on the forum would be a good idea. Telling them to #"@! off, would not)
  51. kick-message: 'Sorry, you are not permitted to login to the server at your current rank'
  52. # What you gonna tell peeps that are banned by your forum? (Telling these guys to #"@! off may actually be a good idea lol)
  53. banned-message: 'You are Banned from Theocraft.org'
  54. # Tell players that they've been assigned ranks when they login, or just do it silently in the background?
  55. notify-group-on-login: true
  56. # Keep out those who aren't in any group stated below (false), or shall we let them in and assign them to their default permissions group (true)?
  57. whitelist-default: true
  58. # Stick all the mappings here for any groups you wish tp be auto-ranked
  59. # Make sure to surround the number in single quotes (''), else it may just self-destruct and noone wants that
  60. # If "whitelisted" is false, then you may ommit the rank, as there will be no need to assign a rank to disallowed players
  61. # You must give a default group that can be assigned to those players that have been demoted from a higher rank to prevent them from keeping permissions they no longer have access to
  62. default-group: default
  63. groups:
  64.     # Here, normal registered members can go ahead and just join in as normal members
  65.     # Admins are instantly granted all there rights as found in the Permissions configuration
  66.     '2':
  67.         rank: Registered
  68.         whitelisted: true
  69.     '3':
  70.         rank: Admin
  71.         whitelisted: true
  72.     '4':
  73.         rank: Mod
  74.         whitelisted: true
  75.     '5':
  76.         rank: SMod
  77.         whitelisted: true
  78.     '6':
  79.         rank: Vip
  80.         whitelisted: true
  81.     '7':
  82.         rank: VIPPlus
  83.         whitelisted: true
  84.     '10':
  85.         rank: VIPPlusPLus
  86.         whitelisted: true
  87.     '12':
  88.         rank: Helper
  89.         whitelisted: true
  90. #Let's say this group is banned for example. We can forget about the rank because they don't deserve one :)
Add Comment
Please, Sign In to add comment