Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.11 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: false
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: true
  39. joinmessage: true
  40. voteremind: true
  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: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} voted for many rewards! You can too with {BOLD}/vote'
  59. playermessage: ''
  60. commands:
  61. - '/give {username} emeraldblock 192'
  62. - '/give {username} diamondblock 192'
  63. - '/give {username} 322:1 16'
  64. - '/give {username} cake 1'
  65. - '/give {username} 17 64'
  66. - '/give {username} 54 8'
  67. - '/eco give {username} 1000000'
  68.  
  69. # luckyvotes section
  70. # 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.
  71.  
  72. luckyvotes:
  73. '15':
  74. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} got 1/15 chance to get {GREEN}5 pieces of sand!'
  75. playermessage: ''
  76. commands:
  77. - '/give {username} sand 5'
  78. '25':
  79. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} got 1/25 chance to get {GREEN}10 pieces of sand and 1 peice of leather!'
  80. playermessage: ''
  81. commands:
  82. - '/give {username} leather 1'
  83. - '/give {username} sand 10'
  84. '50':
  85. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} got 1/50 chance to win {GREEN}a /kit ew!'
  86. playermessage: ''
  87. commands:
  88. - '/kit ew {username}'
  89. '100':
  90. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} got 1/100 chance to win {GREEN}a /kit gw!'
  91. playermessage: ''
  92. commands:
  93. - '/kit gw {username}'
  94. '200':
  95. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} got 1/200 chance to win {GREEN}a /kit ew and a /kit gw!!'
  96. playermessage: ''
  97. commands:
  98. - '/kit gw {username}'
  99. - '/kit ew {username}'
  100. '300':
  101. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} got 1/300 chance to win {GREEN}a /kit nw'
  102. playermessage: ''
  103. commands:
  104. - '/kit nw {username}'
  105. '400':
  106. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} got 1/400 chance to win {GREEN}3x /kit nw'
  107. playermessage: ''
  108. commands:
  109. - '/kit nw {username}'
  110. - '/kit nw {username}'
  111. - '/kit nw {username}'
  112. '750':
  113. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} {BOLD}got 1/750 chance to win {GREEN}CRACKHEAD RANK!'
  114. playermessage: ''
  115. commands:
  116. - '/mail send birdIsTheWord788 {username} got CrackHead through Voting!'
  117. - '/tell {username} An email has been sent to birdIsTheWord788(owner)! You will get your rank when he can do it (usually within 24 hours) thank you!'
  118.  
  119.  
  120. # permission reward section
  121. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  122.  
  123. perms:
  124. double:
  125. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  126. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  127. commands:
  128. - '/give {username} 264 10'
  129.  
  130. # cumulative reward section
  131. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  132.  
  133. cumulative:
  134. '6':
  135. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} has voted a total of {YELLOW}6 times {GOLD}and received {GREEN}/kit nw!'
  136. playermessage: ''
  137. rewardmessage: 'Vote 6 times and receive /kit nw'
  138. commands:
  139. - '/kit nw {username}'
  140. '200':
  141. broadcast: '{WHITE}[{RED}{BOLD}Faz{GREEN}{BOLD}Vote{WHITE}] {GOLD}{username} has voted a total of {YELLOW}200 times {GOLD}and received {GREEN}/fly !!!!!!!!'
  142. playermessage: ''
  143. rewardmessage: 'Vote 200 times to receive /fly'
  144. commands:
  145. - '/manuaddp {username} essentials.fly'
  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}
  163.  
  164. votemessage:
  165. - '{GOLD}-----------------------------------------------------'
  166. - 'http://fazmc.enjin.com/home'
  167. - '{GOLD}-----------------------------------------------------'
  168. - '{AQUA}You currently have {GREEN}{votes} Votes'
  169.  
  170. remindmessage:
  171. - '{GOLD}-----------------------------------------------------'
  172. - 'You have not voted recently, please vote to support the server'
  173. - '{GOLD}-----------------------------------------------------'
  174. - '{AQUA}You currently have {GREEN}{votes} Votes'
  175.  
  176. joinmessage:
  177. - '{GREEN}Please {BOLD}/vote {GREEN}for us!'
  178.  
  179. # Additional formatting codes for below:
  180.  
  181. # {TOTAL} = vote total - used for /rewards
  182. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  183. # {POSITION} = current rank - used for /votetop
  184. # {username} = player name - used for /votetop
  185.  
  186. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  187. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  188. rewardheader:
  189. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  190. votetopheader:
  191. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  192. rewardfooter:
  193. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement