Advertisement
Guest User

Config

a guest
Aug 20th, 2014
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.89 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: false
  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: '&c{username} &7has voted @ &c{service} &7and received &c$1000 Ingame Money!'
  59. playermessage: '&7Thanks for voting at &c{service}!'
  60. commands:
  61. - '/eco give {username} 1000'
  62. MC-Index:
  63. broadcast: '&c{username} &7has voted @ &c{service} &7and received &c$1000 Ingame Money!'
  64. playermessage: '&7Thanks for voting at &c{service}!'
  65. commands:
  66. - '/eco give {username} 1000'
  67.  
  68. # luckyvotes section
  69. # 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.
  70.  
  71. luckyvotes:
  72. '50':
  73. broadcast: '&c{username} &7was lucky and received &c/kit Hero!'
  74. playermessage: '&7You were lucky and received &c/kit Hero!'
  75. commands:
  76. - '/kit hero {username}'
  77. '100':
  78. broadcast: '&c{username} &7was lucky and received &c/kit Legend!'
  79. playermessage: '&7You were lucky and received &c/kit Legend!'
  80. commands:
  81. - '/kit legend {username}'
  82. '150':
  83. broadcast: '&c{username} &7was lucky and received &c/kit Brave!'
  84. playermessage: '&7You were lucky and received &c/kit Brave!'
  85. commands:
  86. - '/kit Brave {username}'
  87. '200':
  88. broadcast: '&c{username} &7was lucky and received &c/kit Original!'
  89. playermessage: '&7You were lucky and received &c/kit Original!'
  90. commands:
  91. - '/kit original {username}'
  92.  
  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}20 Diamonds!'
  110. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  111. rewardmessage: '20x Diamond'
  112. commands:
  113. - '/give {username} 264 20'
  114.  
  115. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  116.  
  117. blocked:
  118. - world_blocked
  119.  
  120. # Available formatting codes for messages:
  121.  
  122. # {service} {servicename} {SERVICE} = service name
  123. # {username} {player} {name} = player username
  124. # {votes} = current vote total
  125. # & = Colour Symbol to enter manual colours / control codes
  126. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  127. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  128. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  129. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  130. # {STRIKETHROUGH} {MAGIC} {RESET}
  131.  
  132. votemessage:
  133. - '&8&l----------------&c&l&lLucky Votes!&8&l-------------------'
  134. - '&7[&c+&7] &8[&c1&7/&c50&8] &cHERO KIT'
  135. - '&7[&c+&7] &8[&c1&7/&c100&8] &cLEGEND KIT'
  136. - '&7[&c+&7] &8[&c1&7/&c150&8] &cBRAVE KIT'
  137. - '&7[&c+&7] &8[&c1&7/&c200&8] &cORIGINAL KIT'
  138. - '&8&l-------------&c&lCumulative Rewards!&8&l---------------'
  139. - '&7[&c+&7] &8[&c25&8] &c$350,000'
  140. - '&7[&c+&7] &8[&c65&8] &c$10,000,000'
  141. - '&8-----------------&c&lVote Links!&8&l-------------------'
  142. - '&7&l[&c&l1&7&l] &c&lhttp://tinyurl.com/pdooumx'
  143. - '&7&l[&c&l2&7&l] &c&lhttp://tinyurl.com/neh8g6m'
  144. - '&7&l[&c&l3&7&l] &c&lhttp://tinyurl.com/laxdlho'
  145. - '&7&l[&c&l4&7&l] &c&lhttp://tinyurl.com/mqo3fzm'
  146. - '&7&l[&c&l5&7&l] &c&lhttp://tinyurl.com/nyvasu7'
  147. - '&8&l-----------------&c&lVote Now!&8&l--------------------'
  148. - '&7You currently have &c{votes} &7Votes'
  149.  
  150. remindmessage:
  151. - '&8&l-----------------------------------------------------'
  152. - '&cYou have not voted recently, please vote to support the server'
  153. - '&8&l-----------------------------------------------------'
  154. - '&7You currently have &c{votes} &7Votes'
  155.  
  156. joinmessage:
  157. - '&8&l----------------&c&l&lLucky Votes!&8&l-------------------'
  158. - '&7[&c+&7] &8[&c1&7/&c50&8] &cHERO KIT'
  159. - '&7[&c+&7] &8[&c1&7/&c100&8] &cLEGEND KIT'
  160. - '&7[&c+&7] &8[&c1&7/&c150&8] &cBRAVE KIT'
  161. - '&7[&c+&7] &8[&c1&7/&c200&8] &cORIGINAL KIT'
  162. - '&8&l-------------&c&lCumulative Rewards!&8&l---------------'
  163. - '&7[&c+&7] &8[&c25&8] &c$350,000'
  164. - '&7[&c+&7] &8[&c65&8] &c$10,000,000'
  165. - '&8-----------------&c&lVote Links!&8&l-------------------'
  166. - '&7&l[&c&l1&7&l] &c&lhttp://tinyurl.com/pdooumx'
  167. - '&7&l[&c&l2&7&l] &c&lhttp://tinyurl.com/neh8g6m'
  168. - '&7&l[&c&l3&7&l] &c&lhttp://tinyurl.com/laxdlho'
  169. - '&7&l[&c&l4&7&l] &c&lhttp://tinyurl.com/mqo3fzm'
  170. - '&7&l[&c&l5&7&l] &c&lhttp://tinyurl.com/nyvasu7'
  171. - '&8&l-----------------&c&lVote Now!&8&l--------------------'
  172. - '&7You currently have &c{votes} &7Votes'
  173.  
  174. # Additional formatting codes for below:
  175.  
  176. # {TOTAL} = vote total - used for /rewards
  177. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  178. # {POSITION} = current rank - used for /votetop
  179. # {username} = player name - used for /votetop
  180.  
  181. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  182. votetopformat: '&7{POSITION}. &c{username} &8- &7{TOTAL}'
  183. rewardheader:
  184. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  185. votetopheader:
  186. - '&8&l----------------&c&lTop Voter!&8&l----------------'
  187. rewardfooter:
  188. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement