Advertisement
Guest User

Untitled

a guest
Nov 30th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.28 KB | None | 0 0
  1. # AurionsVoteListener
  2. # http://www.mineaurion.com
  3. # settings section
  4. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server"!"
  5. # broadcastoffline - Show broadcast message for offline queued votes.
  6. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  7. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  8. # votetopnumber - Number of players to display for the topvote
  9. # AddExtraReward: true (give extra random reward) Depending on the chance
  10. # GiveChanceReward: Gives all rewards of lower numbers
  11. # dbMode - Use "MySQL" or "File"
  12. # dbFile - name of the database file (don't forget the .db)
  13. # setup MySQL
  14. # dbHost - Database IP / Hostname for MySQL.
  15. # dbPort - Database port for MySQL.
  16. # dbUser - Database username for MySQL.
  17. # dbPass - Database password for MySQL.
  18. # dbName - Database name for MySQL.
  19. # dbPrefix - Database table prefix.
  20. # AnnouncementDelay - Delay in second to repeat the message
  21. # Enables cumulative voting
  22.  
  23. Announcement=[
  24. "<GOLD>-----------------------------------------------------",
  25. "<AQUA>Vote for us every day for in game money and claim blocks",
  26. "<GOLD>-----------------------------------------------------"
  27. ]
  28. # The example below would give a 30% chance of a voter receiving an extra 5 book, and a 10% chance of an extra 5 book and 5 ghast tear.
  29. ExtraReward {
  30. "10" {
  31. broadcast="<GREEN><username> <GOLD>was super lucky and received an <GREEN>extra 5 ghast tear"
  32. commands=[
  33. "give <username> ghast tear 5"
  34. ]
  35. playermessage="<GREEN>You were lucky and received an extra 5 book"
  36. }
  37. "30" {
  38. broadcast="<GREEN><username> <GOLD>was super lucky and received an <GREEN>extra 5 book"
  39. commands=[
  40. "give <username> book 5"
  41. ]
  42. playermessage="<GREEN>You were super lucky and received an <GREEN> extra 5 book "
  43. }
  44. }
  45. # Section for config message when the player has voted several times offline<amt> = total offline vote<service> is not usable
  46. Offline {
  47. broadcast="<GREEN><player> voted <amt> times while they were offline and received rewards!"
  48. playermessage="<GREEN>Thanks for voting !"
  49. }
  50. Version=8
  51. # The example below would give an extra 5 book when the player was voted 30 times, and an extra 5 book and 5 ghast tear when the player was voted 10 times.
  52. cumulativevoting {
  53. "10" {
  54. broadcast="<GREEN><username> <GOLD>was vote 10 times and received an <GREEN>extra 5 ghast tear"
  55. commands=[
  56. "give <username> ghast tear 5"
  57. ]
  58. playermessage="<GREEN>You were lucky and received an extra 5 book"
  59. }
  60. "30" {
  61. broadcast="<GREEN><username> <GOLD>was vote 30 times and received an <GREEN>extra 5 book"
  62. commands=[
  63. "give <username> book 5"
  64. ]
  65. playermessage="<GREEN>You were super lucky and received an <GREEN> extra 5 book "
  66. }
  67. }
  68. joinmessage=[
  69. "<GOLD>-----------------------------------------------------",
  70. "<AQUA>Vote for us every day for in game money and claim blocks",
  71. "<GOLD>-----------------------------------------------------",
  72. "<AQUA>You currently have <GREEN><votes> Votes"
  73. ]
  74. # services section (DEFAULT is used if service doesn't exist) The example below would give 5 diamonds per vote. Never remove DEFAULT
  75. services {
  76. DEFAULT {
  77. broadcast="<GREEN><username> <GOLD>has voted @ <GREEN> $500! and 500 more Claim Blocks for Each link! <RED>cmd<AQUA> /vote"
  78. commands=[
  79. "eco add <username> 500",
  80. "acb <username> 500"
  81. ]
  82. playermessage="<GREEN>Thanks for voting!"
  83. }
  84. }
  85. settings {
  86. AddExtraReward=false
  87. AnnouncementDelay=300
  88. GiveChanceReward=true
  89. broadcastoffline=true
  90. cumulativevoting=false
  91. dbFile="SQL.db"
  92. dbHost=""
  93. dbMode=File
  94. dbName=Listener
  95. dbPass=""
  96. dbPort=3306
  97. dbPrefix=""
  98. dbTableQueue=ListenerQueue
  99. dbTableTotal=ListenerTotal
  100. dbUser=root
  101. joinmessage=true
  102. onlineonly=true
  103. votecommand=true
  104. votetopnumber=10
  105. }
  106. # Available formatting codes for messages: <service> = service name <username>= player username <votes> = current vote total & = Colour Symbol to enter manual colours / control codes <AQUA> <BLACK> <BLUE> <DARK_AQUA> <DARK_BLUE> <DARK_GRAY> <DARK_GREEN> <DARK_PURPLE> <DARK_RED> <GOLD> <GRAY> <GREEN> <LIGHT_PURPLE> <RED> <WHITE> <YELLOW> <BOLD> <ITALIC> <UNDERLINE> <STRIKETHROUGH> <STRIKE> <STRIKETHROUGH> <MAGIC> <RESET>
  107. votemessage=[
  108. "<GOLD>-----------------------------------------------------",
  109. "Vote for us every day for in game rewards and extras",
  110. "<GOLD>-----------------------------------------------------",
  111. "<AQUA>You currently have <GREEN><votes> Votes"
  112. ]
  113. # Additional formatting codes for below: <TOTAL> = vote total - used for /rewards <POSITION> = current rank - used for /votetop <username> = player name - used for /votetop
  114. votetopformat="<POSITION>. <GREEN><username> - <WHITE><TOTAL>"
  115. votetopheader=[
  116. "<GOLD>---------------- <WHITE>( <DARK_AQUA>Top Voters<WHITE> ) <GOLD>----------------"
  117. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement