Tarapriest

Untitled

Nov 14th, 2021 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 KB | None | 0 0
  1. # Set bungeecoord to true on servers on the network (In VotingPlugin)
  2. # Set server name in each server related to what it is on bungee
  3. #
  4. # MYSQL Required on all setups
  5. # MYSQL INFO --------------------------
  6. Host: '127.0.0.1'
  7. # Default port is 3306
  8. Port: 3306
  9. Database: ''
  10. Username: ''
  11. Password: ''
  12. # Max number of connections
  13. MaxConnections: 1
  14. # Maxium size of caching mysql
  15. # -1 for no limit
  16. # Affecting this value may affect performance
  17. MaxSize: -1
  18. # Table name prefix, for use with mutliple servers
  19. Prefix: ''
  20. #UseSSL: false
  21. #PublicKeyRetrieval: false
  22.  
  23. Debug: false
  24. # Have a reward on each server
  25. # If false, will send to online server only
  26. SendVotesToAllServers: true
  27. # List of servers the plugin won't send the vote to
  28. # Uses names from bungeecoord config, only needed for non SOCKETS setup
  29. BlockedServers:
  30. - hub
  31.  
  32. # What type of bungee setup
  33. # Requires restart and set on all servers
  34. # https://github.com/BenCodez/VotingPlugin/wiki/Bungeecoord-Setups
  35. # Available:
  36. # SOCKETS
  37. # PLUGINMESSAGING
  38. # MYSQL
  39. BungeeMethod: MYSQL
  40.  
  41. # If false, votes will be checked if user is a valid player that has joined to server
  42. # Works for PLUGINMESSAGING and SOCKETS methods only
  43. # This requires spigot servers AllowUnJoined to be set to true in Config.yml
  44. AllowUnJoined: true
  45.  
  46. # Points to give on vote
  47. PointsOnVote: 1
  48.  
  49. # If true, bungee will handle adding totals
  50. # If false, spigot servers will EACH set their own totals
  51. # If false, AllowUnJoined should false on bungee, spigot servers will handle that
  52. # Recommened to leave true, setting to false setups are currently unsupported
  53. BungeeManageTotals: true
  54.  
  55. # Tell servers to broadcast
  56. # Set DisableBroadcast to true on spigot servers (BungeeSettings.yml) as well
  57. Broadcast: true
  58.  
  59. # ----------------------------
  60. # PLUGINMESSAGING Settings
  61. # ----------------------------
  62.  
  63. # Applies to PLUGINMESSAGING only
  64. # Votes will be forwarded when specific player is online
  65. WaitForUserOnline: false
  66.  
  67. # ----------------------------
  68. # SOCKET Settings
  69. # ONLY for SOCKET method
  70. # ----------------------------
  71.  
  72. # Server to send vote to if player is offline
  73. FallBackServer: 1.16.5
  74.  
  75. # Bungee communication, Add this to each spigot server
  76. # For socket method
  77. BungeeServer:
  78. Host: '127.0.0.1'
  79. Port: 1297
  80.  
  81. # Bungee communication, add each spigot server here
  82. # For socket method
  83. SpigotServers:
  84. 1.16.5:
  85. Host: '127.0.0.1'
  86. Port: 1298
  87. 1.17.1:
  88. Host: '127.0.0.1'
  89. Port: 1999
Add Comment
Please, Sign In to add comment