Advertisement
Guest User

XenSync/config.yml

a guest
Aug 18th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. #Details for connecting to the XenForo database.
  2.  
  3. xenforo-mysql-uri: mysql.**************.com/**************
  4. xenforo-mysql-user: **************
  5. xenforo-mysql-pass: **************
  6.  
  7. #Whether or not to use the member feature.
  8.  
  9. member-feature:
  10. enable: true
  11.  
  12. require-valid-email: true
  13.  
  14. #The default group on the server to check whether verification is needed.
  15. default-group-name: guest
  16.  
  17. #The command to run if a user is verified in XenForo but not in game.
  18. command-to-run: "/manuadd %player% ranger"
  19.  
  20. #Specify where to find a player's name or UUID in XenForo database.
  21. #Default is a profile field called minecraft_name.
  22.  
  23. player-identifier:
  24. field: MinecraftName
  25.  
  26. #Whether to use a player's name or UUID.
  27. #True for name, False for UUID.
  28. name-system: true
  29.  
  30. ##ADVANCED##
  31. #Do not edit anything beyond here unless you understand what you are doing.
  32.  
  33. #Whether or not to use the players profile fields (with the field specified above)
  34. #Turn to false if you are storing the name or UUID elsewhere.
  35. use-profile-fields: true
  36.  
  37. #The table which holds either the players uuid or name against their xenforo id.
  38. database-table: xf_user_profile
  39.  
  40. #The column of the specified table which holds the xenforo id
  41. table-xenid: user_id
  42.  
  43. #The column of the specified table which holds the minecraft name or UUID
  44. table-playerid: custom_fields
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement