Advertisement
Guest User

Untitled

a guest
Mar 25th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.97 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: false
  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 @ {GREEN}{service} {GOLD}and received {GREEN}$350!'
  60. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  61. commands:
  62. - '/eco give {username} 350'
  63.  
  64. # luckyvotes section
  65. # below would give a 1 in 25 chance of a voter receiving an extra 15 diamonds
  66.  
  67. luckyvotes:
  68. '25':
  69. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra 15 Diamonds!'
  70. playermessage: '{GREEN}You were lucky and received an extra $1000!'
  71. commands:
  72. - '/give {username} 264 15'
  73.  
  74. # permission reward section
  75. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  76.  
  77. perms:
  78. double:
  79. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  80. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  81. commands:
  82. - '/give {username} 264 10'
  83.  
  84. # cumulative reward section
  85. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  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 GodApple!'
  114. playermessage: '{GREEN}Thanks for voting {AQUA}5 times!'
  115. rewardmessage: '1x GodApple'
  116. commands:
  117. - '/give {username} 322:1 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 Ocelot spawn 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.  
  138. '9':
  139. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}9 times {GOLD}and received {GREEN}1 Diamond horse Armour!'
  140. playermessage: '{GREEN}Thanks for voting {AQUA}9 times!'
  141. rewardmessage: '1x Diamond Horse Armour'
  142. commands:
  143. - '/give {username} 419 1'
  144. '10':
  145. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}2 Mob spawners!'
  146. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  147. rewardmessage: '2x Mob Spawners'
  148. commands:
  149. - '/give {username} 52 2'
  150.  
  151.  
  152. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  153.  
  154. blocked:
  155. - Guns
  156. - Plots2
  157. - KitPvP
  158.  
  159. # Available formatting codes for messages:
  160.  
  161. # {service} {servicename} {SERVICE} = service name
  162. # {username} {player} {name} = player username
  163. # {votes} = current vote total
  164. # & = Colour Symbol to enter manual colours / control codes
  165. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  166. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  167. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  168. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  169. # {STRIKETHROUGH} {MAGIC} {RESET}
  170.  
  171. votemessage:
  172. - '{DARK_GRAY}-----------------{GOLD}{BOLD}VOTE{DARK_GRAY}----------------------'
  173. - ' {GOLD}You get {GREEN}$350'
  174. - '{DARK_GRAY}--------------{GOLD}{BOLD}Lucky Vote{DARK_GRAY}-------------------'
  175. - '{DARK_GRAY}[{GOLD}1{DARK_GRAY}/{GOLD}25{DARK_GRAY}] {GOLD}Chance to win an extra {GREEN}15 Diamonds'
  176. - '{DARK_GRAY}--------------------------------------------'
  177. - '{DARK_GRAY}[{GOLD}1{DARK_GRAY}] {GOLD}Vote to get {DARK_GREEN}5xp'
  178. - '{DARK_GRAY}[{GOLD}2{DARK_GRAY}] {GOLD}Votes to get {RED}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 God 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.  
  188. - '{DARK_GRAY}--------------------------------------------'
  189. - '{GOLD}Vote at {GREEN}http://minecraft-server-list.com/server/343261/vote/'
  190. - '{DARK_GRAY}--------------------------------------------'
  191.  
  192. - '{GOLD}-----------------------------------------------------'
  193. - 'Vote for us every day for in game rewards and extras'
  194. - '{GREEN}{BOLD}Vote at {BLUE}http://minecraft-server-list.com/server/343261/vote/'
  195. - '{GOLD}-----------------------------------------------------'
  196. - '{AQUA}You currently have {GREEN}{votes} Votes'
  197.  
  198. remindmessage:
  199. - '{GOLD}-----------------------------------------------------'
  200. - 'You have not voted recently, please vote to support the server'
  201. - '{GOLD}-----------------------------------------------------'
  202. - '{AQUA}You currently have {GREEN}{votes} Votes'
  203.  
  204. joinmessage:
  205. - '{GOLD}-----------------------------------------------------'
  206. - 'Vote for us every day for in game rewards and extras'
  207. - '{GOLD}-----------------------------------------------------'
  208. - '{AQUA}You currently have {GREEN}{votes} Votes'
  209.  
  210. # Additional formatting codes for below:
  211.  
  212. # {TOTAL} = vote total - used for /rewards
  213. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  214. # {POSITION} = current rank - used for /votetop
  215. # {username} = player name - used for /votetop
  216.  
  217. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  218. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  219. rewardheader:
  220. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  221. votetopheader:
  222. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  223. rewardfooter:
  224. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement