Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.07 KB | None | 0 0
  1. # GAListener v1.2
  2. # http://www.minecraft-index.com
  3.  
  4. # settings section
  5.  
  6. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  7. # luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
  8. # permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
  9. # cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
  10. # broadcastqueue - Show broadcast message for queued votes.
  11. # broadcastoffline - Show broadcast message for offline queued votes.
  12. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  13. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  14. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  15. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  16. # 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.
  17. # remindseconds - How often (in seconds) between each reminder message.
  18. # logfile - Log received votes to vote.log file.
  19. # dbMode - Database mode. Use either mysql or sqlite.
  20. # dbFile - Database filename for SQLite.
  21. # dbHost - Database IP / Hostname for MySQL.
  22. # dbPort - Database port for MySQL.
  23. # dbUser - Database username for MySQL.
  24. # dbPass - Database password for MySQL.
  25. # dbName - Database name for MySQL.
  26. # dbPrefix - Database table prefix.
  27.  
  28. settings:
  29. onlineonly: true
  30. luckyvote: true
  31. permvote: false
  32. cumulative: true
  33. broadcastqueue: true
  34. broadcastrecent: true
  35. broadcastoffline: false
  36. votecommand: true
  37. rewardcommand: false
  38. joinmessage: true
  39. voteremind: true
  40. remindseconds: 300
  41. logfile: false
  42. dbMode: 'sqlite'
  43. dbFile: 'GAL.db'
  44. dbHost: 'localhost'
  45. dbPort: 3306
  46. dbUser: 'root'
  47. dbPass: ''
  48. dbName: 'GAL'
  49. dbPrefix: ''
  50.  
  51. # services section (default is used if service doesn't exist)
  52. # The example below would give 5 diamonds per vote.
  53.  
  54. services:
  55. default:
  56. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}just voted at {DARK_AQUA}{service} {WHITE}and won {DARK_AQUA}a crate key!'
  57. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}Thanks for voting! Here is your key.'
  58. commands:
  59. - '/cratekeys give {username} vote 1'
  60.  
  61. # luckyvotes section
  62. # The example below would give a 1 in 10 chance of a voter receiving an extra $1000, and a 1 in 50 chance of an extra $1000 and 100XP.
  63.  
  64. luckyvotes:
  65. '10':
  66. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}was lucky and received {DARK_AQUA}1 billion!'
  67. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}You were lucky and received 1 billion!'
  68. commands:
  69. - '/eco give {username} 1000000000'
  70. '25':
  71. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}was lucky and received {DARK_AQUA}5 billion!'
  72. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}You were lucky and received 5 billion!'
  73. commands:
  74. - '/eco give {username} 5000000000'
  75. '50':
  76. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}was lucky and received {DARK_AQUA}a 10/10/10 pick!'
  77. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}You were lucky and received a 10/10/10 pick!'
  78. commands:
  79. - '/kit 101010pick {username}'
  80. '250':
  81. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}was lucky and received {DARK_AQUA}a 25/25/25 pick!'
  82. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}You were lucky and received a 25/25/25 pick!'
  83. commands:
  84. - '/kit 252525pick {username}'
  85. '1500':
  86. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}was lucky and received {DARK_AQUA}100 billion!'
  87. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}You were lucky and received 100 billion!'
  88. commands:
  89. - '/eco give {username} 100000000000'
  90. '2000':
  91. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}was lucky and received {DARK_AQUA}an OP pickaxe!'
  92. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}You were lucky and received an OP pickaxe!'
  93. commands:
  94. - '/kit oppick {username}'
  95. '3000':
  96. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}was lucky and received {DARK_AQUA}an OP+ pickaxe!'
  97. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}You were lucky and received an OP+ pickaxe!'
  98. commands:
  99. - '/kit oppluspick {username}'
  100.  
  101. # permission reward section
  102. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  103.  
  104. perms:
  105. double:
  106. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  107. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  108. commands:
  109. - '/eco give {username} 10000000000'
  110.  
  111. # cumulative reward section
  112. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  113.  
  114. cumulative:
  115. '100':
  116. broadcast: '{WHITE}Vote{DARK_RED}>> {DARK_AQUA}{username} {WHITE}has voted {DARK_AQUA}}100 times {WHITE}and received {DARK_AQUA}10 billion!'
  117. playermessage: '{WHITE}Vote{DARK_RED}>> {WHITE}Thanks for voting {DARK_AQUA}100 times{WHITE}! Here is 10 billion!'
  118. rewardmessage: '10 Billion'
  119. commands:
  120. - '/eco give {username} 10000000000'
  121.  
  122. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  123.  
  124. blocked:
  125. - world_blocked
  126.  
  127. # Available formatting codes for messages:
  128.  
  129. # {service} {servicename} {SERVICE} = service name
  130. # {username} {player} {name} = player username
  131. # {votes} = current vote total
  132. # & = Colour Symbol to enter manual colours / control codes
  133. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  134. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  135. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  136. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  137. # {STRIKETHROUGH} {MAGIC} {RESET}
  138.  
  139. votemessage:
  140. - '{DARK_GRAY}--------------------------------------------------------'
  141. - '{DARK_GRAY}[{AQUA}1/1{DARK_GRAY}] {AQUA}1x Vote Key
  142. - '{DARK_GRAY}[{AQUA}1/10{DARK_GRAY}] {AQUA}$1,000,000,000
  143. - '{DARK_GRAY}[{AQUA}1/25{DARK_GRAY}] {AQUA}$5,000,000,000
  144. - '{DARK_GRAY}[{AQUA}1/50{DARK_GRAY}] {AQUA}10/10/10 Pickaxe
  145. - '{DARK_GRAY}[{AQUA}1/250{DARK_GRAY}] {AQUA}25/25/25 Pickaxe
  146. - '{DARK_GRAY}[{AQUA}1/1500{DARK_GRAY}] {AQUA}$100,000,000,000
  147. - '{DARK_GRAY}[{AQUA}1/2000{DARK_GRAY}] {AQUA}OP Pickaxe
  148. - '{DARK_GRAY}[{AQUA}1/3000{DARK_GRAY}] {AQUA}OP+ Pickaxe
  149. - '{DARK_GRAY}[{AQUA}Every 100 Votes{DARK_GRAY}] {AQUA}$10,000,000,000
  150. - '{DARK_GRAY}--------------------------------------------------------'
  151.  
  152. remindmessage:
  153. - '{DARK_GRAY}--------------------------------------------------------'
  154. - '{DARK_GRAY}[{AQUA}1/1{DARK_GRAY}] {AQUA}1x Vote Key
  155. - '{DARK_GRAY}[{AQUA}1/10{DARK_GRAY}] {AQUA}$1,000,000,000
  156. - '{DARK_GRAY}[{AQUA}1/25{DARK_GRAY}] {AQUA}$5,000,000,000
  157. - '{DARK_GRAY}[{AQUA}1/50{DARK_GRAY}] {AQUA}10/10/10 Pickaxe
  158. - '{DARK_GRAY}[{AQUA}1/250{DARK_GRAY}] {AQUA}25/25/25 Pickaxe
  159. - '{DARK_GRAY}[{AQUA}1/1500{DARK_GRAY}] {AQUA}$100,000,000,000
  160. - '{DARK_GRAY}[{AQUA}1/2000{DARK_GRAY}] {AQUA}OP Pickaxe
  161. - '{DARK_GRAY}[{AQUA}1/3000{DARK_GRAY}] {AQUA}OP+ Pickaxe
  162. - '{DARK_GRAY}[{AQUA}Every 100 Votes{DARK_GRAY}] {AQUA}$10,000,000,000
  163. - '{DARK_GRAY}--------------------------------------------------------'
  164.  
  165. joinmessage:
  166. - '{DARK_GRAY}--------------------------------------------------------'
  167. - '{DARK_GRAY}[{AQUA}1/1{DARK_GRAY}] {AQUA}1x Vote Key
  168. - '{DARK_GRAY}[{AQUA}1/10{DARK_GRAY}] {AQUA}$1,000,000,000
  169. - '{DARK_GRAY}[{AQUA}1/25{DARK_GRAY}] {AQUA}$5,000,000,000
  170. - '{DARK_GRAY}[{AQUA}1/50{DARK_GRAY}] {AQUA}10/10/10 Pickaxe
  171. - '{DARK_GRAY}[{AQUA}1/250{DARK_GRAY}] {AQUA}25/25/25 Pickaxe
  172. - '{DARK_GRAY}[{AQUA}1/1500{DARK_GRAY}] {AQUA}$100,000,000,000
  173. - '{DARK_GRAY}[{AQUA}1/2000{DARK_GRAY}] {AQUA}OP Pickaxe
  174. - '{DARK_GRAY}[{AQUA}1/3000{DARK_GRAY}] {AQUA}OP+ Pickaxe
  175. - '{DARK_GRAY}[{AQUA}Every 100 Votes{DARK_GRAY}] {AQUA}$10,000,000,000
  176. - '{DARK_GRAY}--------------------------------------------------------'
  177.  
  178. # Additional formatting codes for below:
  179.  
  180. # {TOTAL} = vote total - used for /rewards
  181. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  182. # {POSITION} = current rank - used for /votetop
  183. # {username} = player name - used for /votetop
  184.  
  185. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  186. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  187. rewardheader:
  188. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  189. votetopheader:
  190. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  191. rewardfooter:
  192. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement