Advertisement
Guest User

Untitled

a guest
Nov 4th, 2014
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.90 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: false
  32. permvote: false
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: false
  39. joinmessage: false
  40. voteremind: true
  41. remindseconds: 86400
  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}500K and a ALTToken'
  59. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  60. commands:
  61. - '/token give {username} 1'
  62. - '/essentials:economy give {usermame} 500000'
  63. - '/ezexpand addvote'
  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. '5':
  70. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra 100mil and 2 crates!'
  71. playermessage: '{GREEN}You were lucky and received extra items!'
  72. commands:
  73. - '/eco give {username} 100000000'
  74. - '/crate give {username} 2'
  75. '20':
  76. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 750mil and 5 crates!'
  77. playermessage: '{GREEN}You were super lucky and received an {GREEN}EXTRA PRIZE!'
  78. commands:
  79. - '/crate give {username} 5'
  80. - '/eco give {username} 750000000'
  81. '50':
  82. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 2.5Bil and 10 crates!'
  83. playermessage: '{GREEN}You were super lucky and received an {GREEN}EXTRA PRIZE!'
  84. commands:
  85. - '/crate give {username} 10'
  86. - '/eco give {username} 2500000000'
  87. '100':
  88. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 10Bil and 25 crates!'
  89. playermessage: '{GREEN}You were super lucky and received an {GREEN}EXTRA PRIZE!'
  90. commands:
  91. - '/crate give {username} 25'
  92. - '/eco give {username} 10000000000'
  93.  
  94. # permission reward section
  95. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  96.  
  97. perms:
  98. double:
  99. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  100. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  101. commands:
  102. - '/give {username} 264 10'
  103.  
  104. # cumulative reward section
  105. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  106.  
  107. cumulative:
  108. '10':
  109. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}1Bil and 10 tokens!'
  110. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  111. commands:
  112. - '/token give {username} 10'
  113. - '/essentials:eco give {username} 5000000000'
  114. '30':
  115. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}30 times {GOLD}and received {GREEN}50Bil and 20 crates!'
  116. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  117. commands:
  118. - '/token give {username} 20'
  119. - '/essentials:eco give {username} 20000000000'
  120.  
  121. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  122.  
  123. blocked:
  124. - world_blocked
  125.  
  126. # Available formatting codes for messages:
  127.  
  128. # {service} {servicename} {SERVICE} = service name
  129. # {username} {player} {name} = player username
  130. # {votes} = current vote total
  131. # & = Colour Symbol to enter manual colours / control codes
  132. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  133. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  134. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  135. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  136. # {STRIKETHROUGH} {MAGIC} {RESET}
  137.  
  138. votemessage:
  139. - '{GOLD}{BOLD}{ITALIC}ALT{BLUE}{BOLD}Voting'
  140. - '{DARK_GREEN}-----------------------------------------------------'
  141. - '&4&lRewards:'
  142. - '&eEach vote you receive 500K and 1 ALTToken'
  143. - '{GREEN}http://minecraft-index.com/24271-altnetwork/vote'
  144. - '{GREEN}http://topg.org/Minecraft/in-395603'
  145. - '{GREEN}http://minestatus.net/123299-altprison-oppest-prison/vote'
  146. - '{GREEN}http://planetminecraft.com/server/altnetwork/vote/'
  147. - '{GREEN}http://minecraftservers.org/vote/149218'
  148. - '{GREEN}http://minepick.com/servers/8385/vote/'
  149. - '{GREEN}http://mineservers.com/server/27020/vote'
  150. - '{DARK_GREEN}-----------------------------------------------------'
  151. - '{LIGHT_PURPLE}You currently have {GOLD}{votes} {LIGHT_PURPLE}Votes'
  152.  
  153. remindmessage:
  154. - '{GOLD}----------------------------------------------'
  155. - 'You have not voted recently, please vote with /Vote'
  156. - '{GOLD}----------------------------------------------'
  157. - '{AQUA}You currently have {GREEN}{votes} Votes'
  158.  
  159. joinmessage:
  160. - '{GOLD}{BOLD}{ITALIC}ALT{BLUE}{BOLD}Voting'
  161. - '{DARK_GREEN}-----------------------------------------------------'
  162. - '{AQUA}Vote for 500K and a Token!'
  163. - '{BLUE}Lucky votes:'
  164. - '{BLUE}1 out of 5 chance of 100billion and a mob-pick'
  165. - '{BLUE}1 out of 20 chance of 1trillion and a swag-pick'
  166. - '{BLUE}1 out of 50 chance of 100trillion and a ALT-Pick'
  167. - '{BLUE}1 out of 100 chance of 500trillion and a mexo rank'
  168. - '{GREEN}http://www.minecraft-index.com/24271-altnetwork/vote'
  169. - '{GREEN}http://minecraft-server-list.com/server/233405/vote/'
  170. - '{GREEN}http://www.planetminecraft.com/server/altnetwork/vote/'
  171. - '{GREEN}http://minecraftservers.org/vote/149218'
  172. - '{GREEN}http://www.minepick.com/servers/8385/vote/'
  173. - '{GREEN}http://mineservers.com/server/27020/vote'
  174. - '{DARK_GREEN}-----------------------------------------------------'
  175. - '{LIGHT_PURPLE}You currently have {GOLD}{votes} {LIGHT_PURPLE}Votes'
  176. # Additional formatting codes for below:
  177.  
  178. # {TOTAL} = vote total - used for /rewards
  179. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  180. # {POSITION} = current rank - used for /votetop
  181. # {username} = player name - used for /votetop
  182.  
  183. rewardformat: '{GREEN}What'
  184. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  185. rewardheader:
  186. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  187. votetopheader:
  188. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  189. rewardfooter:
  190. - '&aEach regular vote you receive 5Mil and 1 Crate'
  191. - '&cCumulative rewards:'
  192. - '&6Vote 10 times and get 10 crates and 25bil'
  193. - '&6Vote 30 times and get 20 crates and 50bil'
  194. - '&6Vote 50 times and get 30 crates and 100bil'
  195. - '&2Lucky Rewards:'
  196. - '&b1/5 chance of getting 100mil and 2 crates'
  197. - '&b1/20 chance of getting 750mil and 5 crates'
  198. - '&b1/50 chance of getting 2.5bil and 10 crates'
  199. - '&b1/100 chance of getting 10bil and 20 crates'
  200. - '&aEach regular vote you receive 5Mil and 1 Crate'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement