Guest User

gallistener

a guest
Apr 2nd, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.98 KB | None | 0 0
  1. # GAListener v1.3.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. # 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: false
  31. luckyvote: false
  32. permvote: true
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: false
  39. joinmessage: true
  40. voteremind: false
  41. remindseconds: 300
  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: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}5 Diamonds!'
  59. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  60. commands:
  61. - '/give {username} 264 3'
  62.  
  63. # luckyvotes section
  64. # 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.
  65.  
  66. luckyvotes:
  67. '10':
  68. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  69. playermessage: '{GREEN}You were lucky and received an extra $1000!'
  70. commands:
  71. - '/eco give {username} 1000'
  72. '50':
  73. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
  74. playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
  75. commands:
  76. - '/xp give {username} 100'
  77. - '/eco give {username} 1000'
  78.  
  79. # permission reward section
  80. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  81.  
  82. perms:
  83. double:
  84. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}2 Diamonds!'
  85. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  86. commands:
  87. - '/give {username} 264 2'
  88.  
  89. # cumulative reward section
  90. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  91.  
  92. cumulative:
  93. '1':
  94. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}1 time {GOLD}and received {GREEN}Regular Rank!'
  95. playermessage: '{GREEN}Thanks for voting {AQUA}1 time!'
  96. rewardmessage: '2 Diamond'
  97. commands:
  98. - '/pex user {username} group set Regular'
  99. - '/give {username} 264 2'
  100. '10':
  101. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received Amateur Rank!'
  102. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  103. rewardmessage: '6 Diamonds'
  104. commands:
  105. - '/pex user {username} group set Amateur'
  106. - '/give {username} 264 6'
  107. '20':
  108. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}20 times {GOLD}and received Experienced Rank!'
  109. playermessage: '{GREEN}Thanks for voting {AQUA}20 times!'
  110. rewardmessage: '10 Diamonds'
  111. commands:
  112. - '/pex user {username} group set Experienced'
  113. - '/give {username} 264 10'
  114. '35':
  115. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}35 times {GOLD}and received Elite Rank!'
  116. playermessage: '{GREEN}Thanks for voting {AQUA}35 times!'
  117. rewardmessage: '14 Diamonds'
  118. commands:
  119. - '/pex user {username} group set Elite'
  120. - '/give {username} 264 14'
  121. '55':
  122. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}55 times {GOLD}and received Legend Rank!'
  123. playermessage: '{GREEN}Thanks for voting {AQUA}55 times!'
  124. rewardmessage: '24 Diamonds'
  125. commands:
  126. - '/pex user {username} group set Legend'
  127. - '/give {username} 264 24'
  128. '75':
  129. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}75 times {GOLD}and received God Rank!'
  130. playermessage: '{GREEN}Thanks for voting {AQUA}75 times!'
  131. rewardmessage: '30 Diamonds'
  132. commands:
  133. - '/pex user {username} group set God'
  134. - '/give {username} 264 30'
  135.  
  136. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  137.  
  138. blocked:
  139. - world_blocked
  140.  
  141. # Available formatting codes for messages:
  142.  
  143. # {service} {servicename} {SERVICE} = service name
  144. # {username} {player} {name} = player username
  145. # {votes} = current vote total
  146. # & = Colour Symbol to enter manual colours / control codes
  147. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  148. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  149. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  150. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  151. # {STRIKETHROUGH} {MAGIC} {RESET}
  152.  
  153. votemessage:
  154. - '{GOLD}-----------------------------------------------------'
  155. - 'Vote for us every day for in game rewards and extras'
  156. - '{GOLD}-----------------------------------------------------'
  157. - '{AQUA}You currently have {GREEN}{votes} Votes'
  158. - 'http://minecraft-server-list.com/server/343177/vote/'
  159.  
  160. remindmessage:
  161. - '{GOLD}-----------------------------------------------------'
  162. - 'You have not voted recently, please vote to support the server'
  163. - '{GOLD}-----------------------------------------------------'
  164. - '{AQUA}You currently have {GREEN}{votes} Votes'
  165.  
  166. joinmessage:
  167. - '{GOLD}-----------------------------------------------------'
  168. - 'Vote for us every day for in game rewards and extras'
  169. - '{GOLD}-----------------------------------------------------'
  170. - '{AQUA}You currently have {GREEN}{votes} Votes'
  171.  
  172. # Additional formatting codes for below:
  173.  
  174. # {TOTAL} = vote total - used for /rewards
  175. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  176. # {POSITION} = current rank - used for /votetop
  177. # {username} = player name - used for /votetop
  178.  
  179. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  180. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  181. rewardheader:
  182. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  183. votetopheader:
  184. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  185. rewardfooter:
  186. - '{AQUA}You currently have {GREEN}{votes} Votes'
Add Comment
Please, Sign In to add comment