Advertisement
Guest User

Untitled

a guest
Aug 6th, 2024
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.56 KB | None | 0 0
  1. ##########################################
  2. # Bungee Setup
  3. # Only if using votingplugin bungee to send votes
  4. # REQUIRES RESTART FOR CHANGES TO TAKE EFFECT
  5. ##########################################
  6.  
  7. # Plugin using bungee, requires plugin on bungee server
  8. UseBungeecord: true
  9.  
  10. # What type of bungee setup
  11. # Requires restart and set on all servers
  12. # https://github.com/BenCodez/VotingPlugin/wiki/Bungeecord-Setups
  13. # Available:
  14. # SOCKETS
  15. # PLUGINMESSAGING (Recommended)
  16. # MYSQL
  17. # REDIS (2nd Most Recommended)
  18. BungeeMethod: PLUGINMESSAGING
  19.  
  20. # Use Redis for between server communication, set BungeeMethod to REDIS to use this
  21. Redis:
  22. Host: 135.148.136.59
  23. Port: 26421
  24. # To get the user name, run redis-cli, if you set a password, run "auth <your password>" and if the out put is "OK" run "ACL USERS"
  25. Username: 'default'
  26. Password: ''
  27. # Set a prefix from an entire proxy network if using multi-proxy setup below
  28. Prefix: ''
  29.  
  30. # Enables more debug messages for communication between servers
  31. # Use /votingpluginbungee status for testing communication
  32. BungeeDebug: false
  33.  
  34. # Get the plugin to broadcast to all servers
  35. # If false you need to enable
  36. # Only use for global rewards (one per network), otherwise you will get double broadcasts
  37. BungeeBroadcast: false
  38.  
  39. # For pluginmessaging method only
  40. # Whether to broadcast on cached votes
  41. BungeeBroadcastAlways: true
  42.  
  43. # If true, the server won't broadcast votes
  44. # To be used in conjuction with Broadcast setting on bungee
  45. DisableBroadcast: false
  46.  
  47. # If true, offline rewards will be stored per server, rather than global
  48. # This shouldn't need to be set unless you get alot of cross server rewards issues
  49. # You can also specify the server within the rewards
  50. # Requires server name below to be correct
  51. PerServerRewards: false
  52.  
  53. # If true, milestones work per server
  54. # Please note totals still sync, but milestones can be claimed on each server
  55. # Needs to be set across all needed servers
  56. PerServerMilestones: false
  57.  
  58. # If true, points will be given on a per server level
  59. # Points will be added when server gets vote from bungee
  60. PerServerPoints: false
  61.  
  62. # If true, plugin will trigger VotifierEvent
  63. # Should allow some compability with other plugins
  64. TriggerVotifierEvent: false
  65.  
  66. # If enabled plugin will give extra allsites reward if deterimned that it should
  67. # E.g. user votes offline for 7 days, they will only get 1 allsites reward by default
  68. # When enabled, they should get 7
  69. # Only applies to PLUGINMESSAGING
  70. # Recommend enabling ExtraAllSitesCheck in config.yml as well
  71. GiveExtraAllSitesRewards: false
  72.  
  73. # What server this is in bungee (must match)
  74. # Also can be applied to rewards
  75. Server: lobby
  76.  
  77. # Rewards from bungee vote party
  78. # Gives to only players only
  79. # Use regular voteparty rewards otherwise
  80. # Can edit via /av gui
  81. BungeeVotePartyRewards: {}
  82.  
  83. # List of commands to run on bungee party
  84. # This runs a one time command only
  85. BungeeVotePartyGlobalCommands: []
  86.  
  87. ####################################################################################
  88. # Global mysql data handle for between server commmunications
  89. # This is NOT required for bungee voting to work
  90. # This is still a WIP, use with caution
  91. # This will create a different table then from users storing server info to process
  92. #
  93. # If you use this you need to enable this on BungeeSettings.yml on each server with votingplugin
  94. # Make sure server name is set correctly in BungeeSettings.yml or this will not work correctly
  95. #
  96. # Please use PLUGINMESSAGING for this, SOCKETS should work as well, but not fully tested
  97. #
  98. # This will make votes cache until time change has finished processing
  99. # In the event a server is offline or time change fails, the time change process
  100. # will continue after a set amount of time (in essense skipping a specific server)
  101. # This will also respect blocked servers in bungeeconfig.yml
  102. GlobalData:
  103. Enabled: true
  104. # Use existing mysql connection from config.yml
  105. UseMainMySQL: true
  106. # Mysql settings only used if above is false
  107. Host: ''
  108. # Default port is 3306
  109. Port: 3306
  110. Database: ''
  111. Username: ''
  112. Password: ''
  113. # Max number of connections
  114. MaxConnections: 1
  115. # Must be the same on all servers
  116. Prefix: ''
  117. #UseSSL: true
  118. #PublicKeyRetrieval: false
  119. #Attempt to use mariadb driver
  120. #UseMariaDB: false
  121.  
  122. ##########################################
  123. # For socket setup
  124. # Recommend to try PLUGINMESSAGING setup first
  125. # Options hidden by default to avoid confusion
  126. ##########################################
  127. # Options available here:
  128. # https://github.com/BenCodez/VotingPlugin/wiki/Bungee-Setup-SOCKETS
  129.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement