Advertisement
Guest User

Untitled

a guest
Nov 12th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.27 KB | None | 0 0
  1. # GAListener v1.3.1
  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. # 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.
  19. # logfile - Log received votes to vote.log file.
  20. # dbMode - Database mode. Use either mysql or sqlite.
  21. # dbFile - Database filename for SQLite.
  22. # dbHost - Database IP / Hostname for MySQL.
  23. # dbPort - Database port for MySQL.
  24. # dbUser - Database username for MySQL.
  25. # dbPass - Database password for MySQL.
  26. # dbName - Database name for MySQL.
  27. # dbPrefix - Database table prefix.
  28.  
  29. settings:
  30. onlineonly: true
  31. luckyvote: true
  32. permvote: true
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: true
  39. joinmessage: false
  40. voteremind: false
  41. remindseconds: 1200
  42. ratelimit: 10
  43. logfile: false
  44. dbMode: 'sqlite'
  45. dbFile: 'GAL.db'
  46. dbHost: 'localhost'
  47. dbPort: 3306
  48. dbUser: 'root'
  49. dbPass: ''
  50. dbName: 'GAL'
  51. dbPrefix: ''
  52.  
  53. # services section (default is used if service doesn't exist)
  54. # The example below would give 5 diamonds per vote.
  55.  
  56. services:
  57. default:
  58. broadcast: '{AQUA}[{YELLOW}+{AQUA}] {GREEN}{username} {GOLD}has voted!'
  59. playermessage: '{GREEN}Thanks for voting!'
  60. commands:
  61. - '/eco give {username} 30000000'
  62. - '/cr givekey {username} Vote 1'
  63. - '/tokenenchant add {username} 10'
  64.  
  65. # luckyvotes section
  66. # 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.
  67.  
  68. luckyvotes:
  69. '10':
  70. broadcast: '{GREEN}{username} {GOLD}was lucky and received an extra{GREEN} $20m!'
  71. playermessage: '{GOLD}You were lucky and received an extra{GREEN} 20m!'
  72. commands:
  73. - '/eco give {username} 20000000'
  74. '50':
  75. broadcast: '{GREEN}{username} {GOLD}was lucky and received an extra{GREEN} $150m!'
  76. playermessage: '{GOLD}You were lucky and received an extra{GREEN} 150m!'
  77. commands:
  78. - '/eco give {username} 150000000'
  79. '100':
  80. broadcast: '{GREEN}{username} {GOLD}was lucky and received an extra{GREEN} Ultra Key!'
  81. playermessage: '{GOLD}You were lucky and received an extra{GREEN} Ultra Key!'
  82. commands:
  83. - '/cr givekey {username} Ultra 1'
  84. '200':
  85. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an extra{GREEN} Particle Key!'
  86. playermessage: '{GOLD}You were super lucky and received an extra {GREEN}Particle Key!'
  87. commands:
  88. - '/cr givekey {username} Particle 1'
  89. '300':
  90. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an extra{GREEN} Eternal Kit!'
  91. playermessage: '{GOLD}You were super lucky and received an extra{GREEN} Eternal Kit!'
  92. commands:
  93. - '/kit Eternal {username}'
  94. '500':
  95. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an extra{DARK_RED} OP Pick!'
  96. playermessage: '{GREEN}You were super lucky and received an extra{DARK_RED} OP Pick!'
  97. commands:
  98. - '/kit OPPick {username}'
  99.  
  100. # permission reward section
  101. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  102.  
  103. perms:
  104. double:
  105. broadcast: '{AQUA}[{YELLOW}+{AQUA}] {GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received a{GREEN} 2 Vote Keys, 20 Tokens, and $60m!'
  106. playermessage: '{GREEN}Thanks for voting!'
  107. commands:
  108. - '/eco give {username} 60000000'
  109. - '/cr givekey {username} Vote 2'
  110. - '/tokenenchant add {username} 20'
  111.  
  112. # cumulative reward section
  113. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  114.  
  115. cumulative:
  116. '10':
  117. broadcast: '{GREEN}{username} {GOLD}has voted {GREEN}10 {GOLD}times and received {GREEN}10 Tokens!'
  118. playermessage: '{GOLD}Thanks for voting {GREEN}10 times!'
  119. rewardmessage: '10 Tokens'
  120. commands:
  121. - '/tokenenchant add {username} 10'
  122. '20':
  123. broadcast: '{GREEN}{username} {GOLD}has voted {GREEN}20 {GOLD}times and received {GREEN}50 Tokens!'
  124. playermessage: '{GOLD}Thanks for voting {GREEN}20 times!'
  125. rewardmessage: '50 Tokens'
  126. commands:
  127. - '/tokenenchant add {username} 50'
  128. '35':
  129. broadcast: '{GREEN}{username} {GOLD}has voted {GREEN}35{GOLD} times and received {GREEN}10b!'
  130. playermessage: '{GOLD}Thanks for voting {GREEN}35 times!'
  131. rewardmessage: '10b'
  132. commands:
  133. - '/eco give {username} 10000000000'
  134. '50':
  135. broadcast: '{GREEN}{username} {GOLD}has voted {GREEN}50 {GOLD}times and received {GREEN}25b!'
  136. playermessage: '{GOLD}Thanks for voting {GREEN}50 times!'
  137. rewardmessage: '25b'
  138. commands:
  139. - '/eco give {username} 25000000000'
  140. '100':
  141. broadcast: '{GREEN}{username} {GOLD}has voted {GREEN}100{GOLD} times and received an{DARK_RED} OP Pick!'
  142. playermessage: '{GOLD}Thanks for voting {GREEN}100 times!'
  143. rewardmessage: 'OP Pickaxe'
  144. commands:
  145. - '/kit OPPick {username}'
  146.  
  147. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  148.  
  149. blocked:
  150. - world_blocked
  151.  
  152. # Available formatting codes for messages:
  153.  
  154. # {service} {servicename} {SERVICE} = service name
  155. # {username} {player} {name} = player username
  156. # {votes} = current vote total
  157. # & = Colour Symbol to enter manual colours / control codes
  158. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  159. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  160. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  161. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  162. # {STRIKETHROUGH} {MAGIC} {RESET} {RED}[{YELLOW}+{RED}]
  163.  
  164. votemessage:
  165. - '{YELLOW}{STRIKETHROUGH}{BOLD}------------------{RED}{BOLD}[ {YELLOW}{BOLD}Votes {RED}{BOLD}]{YELLOW}{STRIKETHROUGH}{BOLD}-----------------'
  166. - '{RED}[{YELLOW}+{RED}]{GREEN} http://eternalprison.enjin.com/vote'
  167. - '{YELLOW}{STRIKETHROUGH}--------------------------------------------------'
  168. - '{RED}[{YELLOW}+{RED}] {YELLOW}$30m'
  169. - '{RED}[{YELLOW}+{RED}] {YELLOW}1 Vote Key'
  170. - '{RED}[{YELLOW}+{RED}] {YELLOW}10 Tokens'
  171. - '{YELLOW}[{AQUA}+{YELLOW}] {AQUA}Donors get double rewards!'
  172. - '{YELLOW}{STRIKETHROUGH}--------------------------------------------------'
  173. - '{RED}[{YELLOW}+{RED}]{GREEN} 1/10 {YELLOW}- 20m'
  174. - '{RED}[{YELLOW}+{RED}]{GREEN} 1/50 {YELLOW}- 150m'
  175. - '{RED}[{YELLOW}+{RED}]{GREEN} 1/100 {YELLOW}- 1 Ultra Key'
  176. - '{RED}[{YELLOW}+{RED}]{GREEN} 1/200 {YELLOW}- 1 Particle Key'
  177. - '{RED}[{YELLOW}+{RED}]{GREEN} 1/300 {YELLOW}- 1 Eternal Kit!'
  178. - '{RED}[{YELLOW}+{RED}]{GREEN} 1/500 {YELLOW}- OP Pickaxe!'
  179. - '{YELLOW}{STRIKETHROUGH}--------------------------------------------------'
  180. - '{YELLOW}[{AQUA}+{YELLOW}] {AQUA}You currently have {GRAY}{votes} {AQUA}Votes'
  181.  
  182. remindmessage:
  183. - '{YELLOW}{STRIKETHROUGH}--------------{RED}[ {YELLOW}Votes {RED}]{YELLOW}{STRIKETHROUGH}------------------------'
  184. - '{RED}[{YELLOW}+{RED}] http://www.planetminecraft.com/server/infinity-prison-3232535/vote/'
  185. - '{RED}[{YELLOW}+{RED}] http://minecraft-mp.com/server/95079/vote/'
  186. - '{RED}[{YELLOW}+{RED}] https://www.minestatus.net/137038-infinity-prison/vote'
  187. - '{RED}[{YELLOW}+{RED}] http://www.minecraft-index.com/40207-infinity-prison/vote'
  188. - '{RED}[{YELLOW}+{RED}] https://mcserverstatus.com/vote/29310'
  189. - '{RED}[{YELLOW}+{RED}] http://www.minecraft-servers-list.org/index.php?a=in&u=TedClubberlang'
  190. - '{RED}[{YELLOW}+{RED}] http://minecraft-server.net/vote/1913'
  191. - '{YELLOW}{STRIKETHROUGH}----------------------------------------------------------------------------------------'
  192. - '{RED}[{YELLOW}+{RED}] {AQUA}$50m'
  193. - '{RED}[{YELLOW}+{RED}] {AQUA}1 Vote Key'
  194. - '{RED}[{YELLOW}+{RED}] {AQUA}10 Tokens'
  195. - '{YELLOW}{STRIKETHROUGH}-----------------------------------------------------'
  196. - '{RED}[{YELLOW}+{RED}] 1/10 {GRAY}- {AQUA}20 Million Dollars!'
  197. - '{RED}[{YELLOW}+{RED}] 1/25 {GRAY}- {AQUA}50 Million Dollars!'
  198. - '{RED}[{YELLOW}+{RED}] 1/30 {GRAY}- {AQUA}Efficiency 7 Pickaxe!'
  199. - '{RED}[{YELLOW}+{RED}] 1/50 {GRAY}- {AQUA}Fortune 15 Pickaxe!'
  200. - '{RED}[{YELLOW}+{RED}] 1/100 {GRAY}- {AQUA}Fortune 30 Pickaxe!'
  201. - '{RED}[{YELLOW}+{RED}] 1/200 {GRAY}- {AQUA}5 Vote Keys!'
  202. - '{RED}[{YELLOW}+{RED}] 1/250 {GRAY}- {AQUA}Efficiency 30 Pickaxe!'
  203. - '{RED}[{YELLOW}+{RED}] 1/300 {GRAY}- {AQUA}20 BILLION DOLLARS!!!'
  204. - '{RED}[{YELLOW}+{RED}] 1/500 {GRAY}- {AQUA} OP PICKAXE!!!!!'
  205. - '{YELLOW}{STRIKETHROUGH}-----------------------------------------------------'
  206. - '{AQUA}You currently have {GRAY}{votes} Votes'
  207.  
  208. joinmessage:
  209. - '{YELLOW}{STRIKETHROUGH}--------------{RED}[ {YELLOW}Votes {RED}]{YELLOW}{STRIKETHROUGH}------------------------'
  210. - '{RED}[{YELLOW}+{RED}] http://www.planetminecraft.com/server/infinity-prison-3232535/vote/'
  211. - '{RED}[{YELLOW}+{RED}] http://minecraft-mp.com/server/95079/vote/'
  212. - '{RED}[{YELLOW}+{RED}] https://www.minestatus.net/137038-infinity-prison/vote'
  213. - '{RED}[{YELLOW}+{RED}] http://www.minecraft-index.com/40207-infinity-prison/vote'
  214. - '{RED}[{YELLOW}+{RED}] https://mcserverstatus.com/vote/29310'
  215. - '{RED}[{YELLOW}+{RED}] http://www.minecraft-servers-list.org/index.php?a=in&u=TedClubberlang'
  216. - '{RED}[{YELLOW}+{RED}] http://minecraft-server.net/vote/1913'
  217. - '{YELLOW}{STRIKETHROUGH}----------------------------------------------------------------------------------------'
  218. - '{RED}[{YELLOW}+{RED}] {AQUA}$50m'
  219. - '{RED}[{YELLOW}+{RED}] {AQUA}1 Vote Key'
  220. - '{RED}[{YELLOW}+{RED}] {AQUA}10 Tokens'
  221. - '{YELLOW}{STRIKETHROUGH}-----------------------------------------------------'
  222. - '{RED}[{YELLOW}+{RED}] 1/10 {GRAY}- {AQUA}20 Million Dollars!'
  223. - '{RED}[{YELLOW}+{RED}] 1/25 {GRAY}- {AQUA}50 Million Dollars!'
  224. - '{RED}[{YELLOW}+{RED}] 1/30 {GRAY}- {AQUA}Efficiency 7 Pickaxe!'
  225. - '{RED}[{YELLOW}+{RED}] 1/50 {GRAY}- {AQUA}Fortune 15 Pickaxe!'
  226. - '{RED}[{YELLOW}+{RED}] 1/100 {GRAY}- {AQUA}Fortune 30 Pickaxe!'
  227. - '{RED}[{YELLOW}+{RED}] 1/200 {GRAY}- {AQUA}5 Vote Keys!'
  228. - '{RED}[{YELLOW}+{RED}] 1/250 {GRAY}- {AQUA}Efficiency 30 Pickaxe!'
  229. - '{RED}[{YELLOW}+{RED}] 1/300 {GRAY}- {AQUA}20 BILLION DOLLARS!!!'
  230. - '{RED}[{YELLOW}+{RED}] 1/500 {GRAY}- {AQUA} OP PICKAXE!!!!!'
  231. - '{YELLOW}{STRIKETHROUGH}-----------------------------------------------------'
  232. - '{AQUA}You currently have {GRAY}{votes} Votes'
  233.  
  234. # Additional formatting codes for below:
  235.  
  236. # {TOTAL} = vote total - used for /rewards
  237. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  238. # {POSITION} = current rank - used for /votetop
  239. # {username} = player name - used for /votetop
  240.  
  241. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  242. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  243. rewardheader:
  244. - '{GOLD}{STRIKETHROUGH}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}{STRIKETHROUGH}----------------'
  245. votetopheader:
  246. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  247. rewardfooter:
  248. - '{AQUA}You currently have {GRAY}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement