Advertisement
Guest User

Untitled

a guest
Jul 29th, 2015
375
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.14 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: true
  37. votecommand: true
  38. rewardcommand: true
  39. joinmessage: false
  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: ‘{DARK_GRAY}[{RED}+{DARK_GRAY}] {RED}{username} {GRAY} Voted @ {service} and received &c16 Obsidian, 8 TNT, 1 Token, $1,000, and 1 Vote Key!’
  59. playermessage: ''
  60. commands:
  61. - ‘/eco give {username} 1000’
  62. - ‘/give {username} 49 16’
  63. - ‘/give {username} 46 8’
  64. - ‘/cratekey give {username} vote 1’
  65.  
  66. # luckyvotes section
  67. # 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.
  68.  
  69. luckyvotes:
  70. ‘5’:
  71. broadcast: ‘{RED}EXTRA: {GRAY}2 Vote Keys!’
  72. playermessage: ''
  73. commands:
  74. - ‘/cratekey give {username} vote 2’
  75.  
  76. ‘10’:
  77. broadcast: ‘{RED}EXTRA: {GRAY}Kit Elite!’
  78. playermessage: ''
  79. commands:
  80. - ‘/kit elite {username}’
  81.  
  82. ‘20’:
  83. broadcast: ‘{RED}EXTRA: {GRAY}$20,000!’
  84. playermessage: ''
  85. commands:
  86. - ‘/eco give {username} 20000’
  87.  
  88. ‘30’:
  89. broadcast: ‘{RED}EXTRA: {GRAY}5 Creeper Eggs’
  90. playermessage: ''
  91. commands:
  92. -'/give {username} 383:50 5'
  93.  
  94. ‘40’:
  95. broadcast: ‘{RED}EXTRA: {GRAY}$75,000!’
  96. playermessage: ''
  97. commands:
  98. - '/eco give {username} 75000’
  99.  
  100. ‘50’:
  101. broadcast: ‘{RED}EXTRA: {GRAY}1 Mystery Crate Key’
  102. playermessage: ''
  103. commands:
  104. - ‘/cratekey give {username} mystery 1’
  105.  
  106. ‘60’:
  107. broadcast: ‘{RED}EXTRA: {GRAY}128 Obsidian {RED}AND {GRAY}128 TNT’
  108. playermessage: ''
  109. commands:
  110. - ‘/give {username} 49 128’
  111. - ‘/give {username} 46 128’
  112.  
  113. ‘70’:
  114. broadcast: ‘{RED}EXTRA: {GRAY}$150,000’
  115. playermessage: ''
  116. commands:
  117. - ‘/eco give {username} 150000’
  118.  
  119. ‘80’:
  120. broadcast: ‘{RED}EXTRA: {GRAY}Kit Xrolacy!’
  121. playermessage: ''
  122. commands:
  123. - ‘/kit crolacy {username}’
  124.  
  125. ‘100’:
  126. broadcast: ‘{RED}EXTRA: {GRAY}Kit Overlord’
  127. playermessage: ''
  128. commands:
  129. - ‘/kit Overlord {username}’
  130.  
  131. ‘1000’:
  132. broadcast: ‘{RED}EXTRA: {GRAY}Rank Insane!’
  133. playermessage: ''
  134. commands:
  135. - ‘/manuadd {username} insane’
  136.  
  137. # permission reward section
  138. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  139.  
  140. perms:
  141. double:
  142. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  143. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  144. commands:
  145. - '/give {username} 264 10'
  146.  
  147. # cumulative reward section
  148. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  149.  
  150. cumulative:
  151. ‘5’:
  152. broadcast: ''
  153. playermessage: ''
  154. rewardmessage: ''
  155. commands:
  156. - ‘/kit elite {username}’
  157.  
  158. ‘10’:
  159. broadcast: ''
  160. playermessage: ''
  161. rewardmessage: ''
  162. commands:
  163. - ‘/cratekey give {username} vote 3’
  164.  
  165. ‘15’:
  166. broadcast: ''
  167. playermessage: ''
  168. rewardmessage: ''
  169. commands:
  170. - ‘/eco give {username} 50000’
  171.  
  172. ‘20’:
  173. broadcast: ''
  174. playermessage: ''
  175. rewardmessage: ''
  176. commands:
  177. - ‘/give {username} 383:50 3’
  178.  
  179. ‘25’:
  180. broadcast: ''
  181. playermessage: ''
  182. rewardmessage: ''
  183. commands:
  184. - ‘/eco give {username} 100000’
  185.  
  186. ‘30’:
  187. broadcast: ''
  188. playermessage: ''
  189. rewardmessage: ''
  190. commands:
  191. - ‘/eco give {username} 175000’
  192.  
  193. ‘45’:
  194. broadcast: ''
  195. playermessage: ''
  196. rewardmessage: ''
  197. commands:
  198. - ‘/cratekey give {username} mystery 1’
  199.  
  200. ‘50’:
  201. broadcast: ''
  202. playermessage: ''
  203. rewardmessage: ''
  204. commands:
  205. - ‘/manuadd {username} overlord’
  206.  
  207. ‘75’:
  208. broadcast: ''
  209. playermessage: ''
  210. rewardmessage: ''
  211. commands:
  212. - ‘/kit crolacy {username}’
  213. - ‘/cratekey give {username} mystery 2’
  214.  
  215. ‘100’:
  216. broadcast: ''
  217. playermessage: ''
  218. rewardmessage: ''
  219. commands:
  220. - ‘/manuadd {username} Legend’
  221.  
  222. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  223.  
  224. blocked:
  225. - world_blocked
  226.  
  227. # Available formatting codes for messages:
  228.  
  229. # {service} {servicename} {SERVICE} = service name
  230. # {username} {player} {name} = player username
  231. # {votes} = current vote total
  232. # & = Colour Symbol to enter manual colours / control codes
  233. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  234. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  235. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  236. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  237. # {STRIKETHROUGH} {MAGIC} {RESET}
  238.  
  239. votemessage:
  240. - '{DARK_GRAY}-----------------------------------------------------'
  241. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {GRAY}Normal Reward Per Vote{DARK_GRAY}: {RED}$1,000, 16 Obsidian, 1 Voting Key, and 8 TNT'
  242. - '{DARK_GRAY}-----------------------------------------------------'
  243. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/5{DARK_GRAY}] {GRAY} Chance to Win {RED}2 Vote Keys’
  244. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/10{DARK_GRAY}] {GRAY} Chance to Win {RED}Elite Kit’
  245. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/20{DARK_GRAY}] {GRAY} Chance to Win {RED}$20,000’
  246. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/30{DARK_GRAY}] {GRAY} Chance to Win {RED}5 Creeper Eggs’
  247. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/40{DARK_GRAY}] {GRAY} Chance to Win {RED}$75,000’
  248. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/50{DARK_GRAY}] {GRAY} Chance to Win {RED}1 Mystery Crate Key’
  249. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/60{DARK_GRAY}] {GRAY} Chance to Win {RED}128 Obsidian & 128 TNT’
  250. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/70{DARK_GRAY}] {GRAY} Chance to Win {RED}$150,000’
  251. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/80{DARK_GRAY}] {GRAY} Chance to Win {RED}Kit Crolacy’
  252. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/100{DARK_GRAY}] {GRAY} Chance to Win {RED}Kit Overlord’
  253. - '{DARK_GRAY}[{RED}+{DARK_GRAY}] {DARK_GRAY}[{RED}1/1000{DARK_GRAY}] {GRAY} Chance to Win {RED}Insane Rank’
  254. - '{DARK_GRAY}-----------------------------------------------------'
  255. - '{DARK_GRAY}[{RED}+{DARK_GRAY}]{GRAY} Vote @ {RED} {GRAY} For Awesome Rewards!'
  256. - '{DARK_GRAY}-----------------------------------------------------'
  257.  
  258. remindmessage:
  259. - '{GOLD}-----------------------------------------------------'
  260. - 'You have not voted recently, please vote to support the server'
  261. - '{GOLD}-----------------------------------------------------'
  262. - '{AQUA}You currently have {GREEN}{votes} Votes'
  263.  
  264. joinmessage:
  265. - '{GOLD}-----------------------------------------------------'
  266. - 'Vote for us every day for in game rewards and extras'
  267. - '{GOLD}-----------------------------------------------------'
  268. - '{AQUA}You currently have {GREEN}{votes} Votes'
  269.  
  270. # Additional formatting codes for below:
  271.  
  272. # {TOTAL} = vote total - used for /rewards
  273. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  274. # {POSITION} = current rank - used for /votetop
  275. # {username} = player name - used for /votetop
  276.  
  277. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  278. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  279. rewardheader:
  280. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  281. votetopheader:
  282. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  283. rewardfooter:
  284. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement