Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. # SQL information
  2. mysql:
  3. # Key columns
  4. columns:
  5. # Group column that accepts an Integer
  6. group: "usergroup"
  7. # Username column that accepts a String
  8. name: "username"
  9. # Forum UUID column that accepts a String
  10. uid: "uid"
  11. # Player UUID column that accepts a String
  12. uuid: "uuid"
  13. # Login info
  14. credentials:
  15. username: "BLANK"
  16. password: "BLANK"
  17. # Name of database
  18. database: "admin_forum"
  19. # IP Address
  20. ip: "165.227.49.228:3306"
  21. # Name of the table
  22. table: "mybb_users"
  23.  
  24. # Rank map (rankName: groupId)
  25. rankMap:
  26. default: 1
  27. member: 2
  28.  
  29. # Refresh rate for getting new users and updating ranks (in seconds)
  30. # NOTE: Short refresh times may cause lag!
  31. # Default: 1200 (20 minutes)
  32. refreshRate: 1200
  33.  
  34. # List of commands to execute when a user has registered
  35. # {USER} represents the player's username
  36. registerRewards:
  37. - "give {USER} diamond 1"
  38. - "tellraw {USER} [{\"text\":\"Thanks for registering!\",\"color\":\"aqua\"}]"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement