Advertisement
nikky011

Untitled

Jun 7th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.61 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. # AddExtraRandom: 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. "Vote for us every day for in game rewards and extras",
  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>2000 in game money!”
  32. commands=[
  33. “adminpay <username> 2000”,
  34. “crate key Vote <username> 1”
  35. ]
  36. playermessage="<GREEN>You were Super lucky and received an 2000 in game money!”
  37. }
  38. "30" {
  39. broadcast="<GREEN><username> <GOLD>was super lucky and received an <GREEN> 500 ingame money!“
  40. commands=[
  41. “adminpay <username> 500”,
  42. “crate key Vote <username> 1”
  43. ]
  44. playermessage="<GREEN>You were very lucky and received an <GREEN> 500 in game money!"
  45. }
  46. }
  47. Version=6
  48. # 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.
  49. cumulativevoting {
  50. "10" {
  51. broadcast="<GREEN><username> <GOLD>was vote 10 times and received an <GREEN>300 ingame money”
  52. commands=[
  53. “adminpay <username> 300”,
  54. “crate key Vote <username> 2”
  55. ]
  56. playermessage="<GREEN>Thanks for voting 10 times!You received 300 and two vote keys!“
  57. }
  58. "30" {
  59. broadcast="<GREEN><username> <GOLD>was vote 30 times and received an <GREEN>extra 5 book"
  60. commands=[
  61. “adminpay <username> 500”,
  62. “crate key Vote <username> 3”
  63. ]
  64. playermessage="<GREEN>Thank you for voting! You earned 3 vote keys<GREEN>also 500 in game money!"
  65. }
  66. }
  67. joinmessage=[
  68. "<GOLD>-----------------------------------------------------",
  69. "Vote for us every day for in game rewards and extras",
  70. "<GOLD>-----------------------------------------------------",
  71. "<AQUA>You currently have <GREEN><votes> Votes"
  72. ]
  73. # services section (DEFAULT is used if service doesn't exist) The example below would give 5 diamonds per vote. Never remove DEFAULT
  74. services {
  75. DEFAULT {
  76. broadcast="<GREEN><username> <GOLD>has voted @ <GREEN><service> <GOLD>and received <GREEN>Ingame money and key!”
  77. commands=[
  78. “adminpay <username> 100”,
  79. “crate key Vote <username> 1”
  80. ]
  81. playermessage="<GREEN>Thanks for voting at <AQUA><service> !"
  82. }
  83. MC-Index {
  84. broadcast="<GREEN><username> <GOLD>has voted @ <GREEN> MC-Index <GOLD>and received <GREEN>in game money and key!"
  85. commands=[
  86. “adminpay <username> 100”,
  87. “crate key Vote <username> 1”
  88. ]
  89. playermessage="<GREEN>Thanks for voting at <AQUA><service> !"
  90. }
  91. }
  92. settings {
  93. AddExtraReward=false
  94. AnnouncementDelay=300
  95. GiveChanceReward=true
  96. broadcastoffline=false
  97. cumulativevoting=false
  98. dbFile="SQL.db"
  99. dbHost=""
  100. dbMode=File
  101. dbName=Listener
  102. dbPass=""
  103. dbPort=3306
  104. dbPrefix=""
  105. dbTableQueue=ListenerQueue
  106. dbTableTotal=ListenerTotal
  107. dbUser=root
  108. joinmessage=true
  109. onlineonly=true
  110. votecommand=true
  111. votetopnumber=10
  112. }
  113. # 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>
  114. votemessage=[
  115. "<GOLD>-----------------------------------------------------",
  116. "Vote for us every day for in game rewards and extras",
  117. "<GOLD>-----------------------------------------------------",
  118. "<AQUA>You currently have <GREEN><votes> Votes"
  119. ]
  120. # Additional formatting codes for below: <TOTAL> = vote total - used for /rewards <POSITION> = current rank - used for /votetop <username> = player name - used for /votetop
  121. votetopformat="<POSITION>. <GREEN><username> - <WHITE><TOTAL>"
  122. votetopheader=[
  123. "<GOLD>---------------- <WHITE>( <DARK_AQUA>Top Voters<WHITE> ) <GOLD>----------------"
  124. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement