Advertisement
Guest User

Untitled

a guest
Mar 26th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.90 KB | None | 0 0
  1. # GAListener v1.3.2
  2. # http://www.minecraft-index.com
  3. # http://minecraft-server-list.com/server/343261/vote/
  4.  
  5. # settings section
  6.  
  7. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  8. # luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
  9. # permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
  10. # cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
  11. # broadcastqueue - Show broadcast message for queued votes.
  12. # broadcastoffline - Show broadcast message for offline queued votes.
  13. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  14. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  15. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  16. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  17. # voteremind - Message players who haven't voted in the last 24 hours. Shows the message contained in the remindmessage section at the bottom of this config.
  18. # remindseconds - How often (in seconds) between each reminder message.
  19. # ratelimit - Ignore votes received within this many seconds since the last vote for the same player on the same site. This should prevent duplicate votes.
  20. # logfile - Log received votes to vote.log file.
  21. # dbMode - Database mode. Use either mysql or sqlite.
  22. # dbFile - Database filename for SQLite.
  23. # dbHost - Database IP / Hostname for MySQL.
  24. # dbPort - Database port for MySQL.
  25. # dbUser - Database username for MySQL.
  26. # dbPass - Database password for MySQL.
  27. # dbName - Database name for MySQL.
  28. # dbPrefix - Database table prefix.
  29.  
  30. settings:
  31. onlineonly: true
  32. luckyvote: true
  33. permvote: false
  34. cumulative: true
  35. broadcastqueue: true
  36. broadcastrecent: true
  37. broadcastoffline: false
  38. votecommand: true
  39. rewardcommand: true
  40. joinmessage: true
  41. voteremind: false
  42. remindseconds: 300
  43. ratelimit: 600
  44. logfile: false
  45. dbMode: 'sqlite'
  46. dbFile: 'GAL.db'
  47. dbHost: 'localhost'
  48. dbPort: 3306
  49. dbUser: 'root'
  50. dbPass: ''
  51. dbName: 'GAL'
  52. dbPrefix: ''
  53.  
  54. # services section (default is used if service doesn't exist)
  55. # Below would give $350 per vote.
  56.  
  57. services:
  58. default:
  59. broadcast: '{GREEN}{username} {GOLD}has voted at {GREEN}{service} {GOLD}and received {AQUA}10 Diamonds{GOLD}and {GREEN}$350!'
  60. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  61. commands:
  62. - '/eco give {username} 350'
  63. - '/give {username} 264 10'
  64.  
  65. # luckyvotes section
  66. # below would give a 1 in 25 chance of a voter receiving an extra 15 diamonds
  67.  
  68. luckyvotes:
  69. '25':
  70. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra 15 Diamonds!'
  71. playermessage: '{GREEN}You were lucky and received an extra 15 Diamonds!'
  72. commands:
  73. - '/give {username} 264 15'
  74.  
  75. # permission reward section
  76. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  77.  
  78. perms:
  79. double:
  80. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  81. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  82. commands:
  83. - '/give {username} 264 10'
  84.  
  85. # cumulative reward section
  86.  
  87. cumulative:
  88. '1':
  89. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}1 time {GOLD}and received {GREEN}5 XP!'
  90. playermessage: '{GREEN}Thanks for voting {AQUA}1 time!'
  91. rewardmessage: '5XP'
  92. commands:
  93. - '/xp give {username} 5'
  94. '2':
  95. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}2 times {GOLD}and received {GREEN}10 XP!'
  96. playermessage: '{GREEN}Thanks for voting {AQUA}2 times!'
  97. rewardmessage: '10XP'
  98. commands:
  99. - '/xp give {username} 10'
  100. '3':
  101. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}3 times {GOLD}and received {GREEN}$500!'
  102. playermessage: '{GREEN}Thanks for voting {AQUA}3 times!'
  103. rewardmessage: '$500'
  104. commands:
  105. - '/eco give {username} 500'
  106. '4':
  107. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}4 times {GOLD}and received {GREEN}Random Infernal item!'
  108. playermessage: '{GREEN}Thanks for voting {AQUA}4 times!'
  109. rewardmessage: 'Random Infernal Item'
  110. commands:
  111. - '/give {username} /Im getloot'
  112. '5':
  113. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}5 times {GOLD}and received {GREEN}1 Golden Apple!'
  114. playermessage: '{GREEN}Thanks for voting {AQUA}5 times!'
  115. rewardmessage: '1x Golden Apple'
  116. commands:
  117. - '/give {username} 322 1'
  118. '6':
  119. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}6 times {GOLD}and received {GREEN}10 Emeralds!'
  120. playermessage: '{GREEN}Thanks for voting {AQUA}6 times!'
  121. rewardmessage: '10x Emeralds'
  122. commands:
  123. - '/give {username} 388 10'
  124. '7':
  125. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}7 times {GOLD}and received {GREEN}2 Nametags!'
  126. playermessage: '{GREEN}Thanks for voting {AQUA}7 times!'
  127. rewardmessage: '2x Nametags'
  128. commands:
  129. - '/give {username} 421 2'
  130. '8':
  131. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}8 times {GOLD}and received {GREEN}3 Wolfspawn eggs and 3 Ocelotspawn eggs!'
  132. playermessage: '{GREEN}Thanks for voting {AQUA}8 times!'
  133. rewardmessage: '3x Wolfspawn Eggs and 3x Ocelotspawn Eggs'
  134. commands:
  135. - '/give {username} 383:95 3'
  136. - '/give {username} 383:98 3'
  137. '9':
  138. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}9 times {GOLD}and received {GREEN}1 Diamond horse Armour!'
  139. playermessage: '{GREEN}Thanks for voting {AQUA}9 times!'
  140. rewardmessage: '1x Diamond Horse Armour'
  141. commands:
  142. - '/give {username} 419 1'
  143. '10':
  144. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}2 Mob spawners!'
  145. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  146. rewardmessage: '2x Mob Spawners'
  147. commands:
  148. - '/give {username} 52 2'
  149.  
  150.  
  151. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  152.  
  153. blocked:
  154. - Guns
  155. - Plots2
  156. - KitPvP
  157.  
  158. # Available formatting codes for messages:
  159.  
  160. # {service} {servicename} {SERVICE} = service name
  161. # {username} {player} {name} = player username
  162. # {votes} = current vote total
  163. # & = Colour Symbol to enter manual colours / control codes
  164. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  165. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  166. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  167. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  168. # {STRIKETHROUGH} {MAGIC} {RESET}
  169.  
  170. votemessage:
  171. - '{DARK_GRAY}-----------------{GOLD}{BOLD}VOTE REWARDS{DARK_GRAY}----------------------'
  172. - ' {GOLD}You get {GREEN}$350'
  173. - ' {GOLD}You also get {AQUA}10 Diamonds'
  174. - '{DARK_GRAY}--------------{GOLD}{BOLD}Lucky Votes{DARK_GRAY}-------------------'
  175. - '{DARK_GRAY}[{GOLD}1{DARK_GRAY}/{GOLD}25{DARK_GRAY}] {GOLD}Chance to win an extra {AQUA}15 Diamonds'
  176. - '{DARK_GRAY}--------------------------------------------'
  177. - '{DARK_GRAY}[{GOLD}1{DARK_GRAY}] {GOLD}Vote to get {GREEN}5xp'
  178. - '{DARK_GRAY}[{GOLD}2{DARK_GRAY}] {GOLD}Votes to get {GREEN}10xp'
  179. - '{DARK_GRAY}[{GOLD}3{DARK_GRAY}] {GOLD}Votes to get {GREEN}$500'
  180. - '{DARK_GRAY}[{GOLD}4{DARK_GRAY}] {GOLD}Votes to get {GREEN}Random Infernal Loot'
  181. - '{DARK_GRAY}[{GOLD}5{DARK_GRAY}] {GOLD}Votes to get {GREEN}1 Golden Apple'
  182. - '{DARK_GRAY}[{GOLD}6{DARK_GRAY}] {GOLD}Votes to get {GREEN}10 Emeralds'
  183. - '{DARK_GRAY}[{GOLD}7{DARK_GRAY}] {GOLD}Votes to get {GREEN}2 Nametags'
  184. - '{DARK_GRAY}[{GOLD}8{DARK_GRAY}] {GOLD}Votes to get {GREEN}3 Wolfspawn Eggs and 3 Ocelotspawn Eggs'
  185. - '{DARK_GRAY}[{GOLD}9{DARK_GRAY}] {GOLD}Votes to get {GREEN}1 Diamond Horse Armour'
  186. - '{DARK_GRAY}[{GOLD}10{DARK_GRAY}] {GOLD}Votes to get {GREEN}2 Spawners'
  187. - '{DARK_GRAY}--------------------------------------------'
  188. - '{GREEN}{BOLD}Vote at:'
  189. - '{BLUE}https://minecraft-server-list.com/server/343261/vote/'
  190. - '{BLUE}https://topg.org/Minecraft/in-415210'
  191. - '{BLUE}https://minecraftservers.org/vote/330316'
  192. - '{BLUE}http://www.planetminecraft.com/server/doublecraft-3645403/vote/'
  193. - '{DARK_GRAY}--------------------------------------------'
  194. - '{AQUA}You currently have {GREEN}{votes} Votes'
  195.  
  196. remindmessage:
  197. - '{GOLD}-----------------------------------------------------'
  198. - 'You have not voted recently, please vote to support the server'
  199. - '{GOLD}-----------------------------------------------------'
  200. - '{AQUA}You currently have {GREEN}{votes} Votes'
  201.  
  202. joinmessage:
  203. - '{GOLD}-----------------------------------------------------'
  204. - '{GREEN}{BOLD}Vote for us for Awesome Rewards'
  205. - '{GOLD}-----------------------------------------------------'
  206. - '{AQUA}You currently have {GREEN}{votes} Votes'
  207.  
  208. # Additional formatting codes for below:
  209.  
  210. # {TOTAL} = vote total - used for /rewards
  211. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  212. # {POSITION} = current rank - used for /votetop
  213. # {username} = player name - used for /votetop
  214.  
  215. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  216. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  217. rewardheader:
  218. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  219. votetopheader:
  220. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  221. rewardfooter:
  222. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement