Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.84 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: false
  4. # Want to use a comma seperated list of additional groups to assign your member?
  5. use-additional-groups: false
  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: true
  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: false
  10. # Bung in the info on where to look for the member data
  11. usertable:
  12. # Name of the member data table
  13. name: mc_users
  14. # Field to find the group id to match those set in the "groups" section of this file. This can be left blank if you are using the group-table
  15. group-field:
  16. # If we're not using multitable mode, then which field should we look for the member's minecraft username in?
  17. username-field: username
  18. # And if "use-additional-groups" is enabled... where is the comma seperated list of additional groups?
  19. additional-groups-field:
  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:
  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: smf_custom_fields
  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: id_member
  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:
  32. # This ONLY applies if you want to use a phpBB3 style group table
  33. grouptable:
  34. name: mc_user_group
  35. key-field: user_id
  36. group-field: group_id
  37.  
  38. # Stick your database info here
  39. database:
  40. host: 'localhost'
  41. port: '3306'
  42. db: 'minecraft'
  43. user: 'root'
  44. pass: '**'
  45. # Which worlds on your server should Warrant affect the permissions for?
  46. worlds:
  47. - world
  48. # 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)
  49. kick-message: 'Sorry, you are not permitted to login to the server at your current rank'
  50. # What you gonna tell peeps that are banned by your forum? (Telling these guys to #"@! off may actually be a good idea lol)
  51. banned-message: 'Sorry, you are not permitted to login to the server as you are banned'
  52. # Tell players that they've been assigned ranks when they login, or just do it silently in the background?
  53. notify-group-on-login: true
  54. # Keep out those who aren't in any group stated below (false), or shall we let them in and assign them to the default permissions group (true)?
  55. whitelist-default: true
  56. # Stick all the mappings here for any groups you wish tp be auto-ranked
  57. # Make sure to surround the number in single quotes (''), else it may just self-destruct and noone wants that
  58. # If "whitelisted" is false, then you may ommit the rank, as there will be no need to assign a rank to disallowed players
  59. groups:
  60. '1':
  61. rank: Guest
  62. whitelisted: true
  63. '5':
  64. rank: Owner
  65. whitelisted: true
  66. '11':
  67. rank: Moderator
  68. whitelisted: true
  69. '13':
  70. rank: Constructer
  71. whitelisted: true
  72. '14':
  73. rank: Builder
  74. whitelisted: true
  75. '17':
  76. rank: Admin
  77. whitelisted: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement