Advertisement
Guest User

Untitled

a guest
Jan 11th, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.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: true
  31. luckyvote: true
  32. permvote: false
  33. cumulative: false
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: true
  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: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}thanks for supporting us!'
  59. playermessage: '{AQUA}Thanks for voting at {service}!'
  60. commands:
  61. - '/give {username} cooked_beef 3'
  62. MC-Index:
  63. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}MC-Index.com {GOLD}thanks for supporting us!'
  64. playermessage: '{AQUA}Thanks for voting at {service}!'
  65. commands:
  66. - '/give {username} cooked_beef 3'
  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. '10':
  73. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  74. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  75. commands:
  76. - '/give {username} diamond_ore 1'
  77. '10':
  78. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  79. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  80. commands:
  81. - '/give {username} coal_ore 25'
  82. '10':
  83. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  84. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  85. commands:
  86. - '/give {username} quartz_block 8'
  87. '10':
  88. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  89. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  90. commands:
  91. - '/give {username} tnt 15'
  92. '10':
  93. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  94. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  95. commands:
  96. - '/give {username} gunpowder 15'
  97. '10':
  98. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  99. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  100. commands:
  101. - '/give {username} firework 10'
  102. '10':
  103. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  104. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  105. commands:
  106. - '/give {username} iron_block 3'
  107. '10':
  108. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  109. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  110. commands:
  111. - '/give {username} diamond 1'
  112. '15':
  113. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  114. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  115. commands:
  116. - '/give {username} slime 1'
  117. '15':
  118. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  119. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  120. commands:
  121. - '/give {username} clay 9'
  122. '15':
  123. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  124. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  125. commands:
  126. - '/give {username} web 5'
  127. '15':
  128. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  129. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  130. commands:
  131. - '/give {username} saddle 1'
  132. '20':
  133. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  134. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  135. commands:
  136. - '/give {username} name_tag 1'
  137. '20':
  138. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  139. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  140. commands:
  141. - '/give {username} cooked_beef 15'
  142. '20':
  143. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  144. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  145. commands:
  146. - '/give {username} cooked_porkchop 10'
  147. '30':
  148. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  149. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  150. commands:
  151. - '/give {username} rotten_flesh 1'
  152. '30':
  153. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  154. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  155. commands:
  156. - '/give {username} stick 1'
  157. '30':
  158. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  159. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  160. commands:
  161. - '/give {username} poisonous_potato 1'
  162. '30':
  163. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  164. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  165. commands:
  166. - '/give {username} rotten_flesh 1'
  167. '30':
  168. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  169. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  170. commands:
  171. - '/give {username} end_crystal 4'
  172. '30':
  173. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  174. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  175. commands:
  176. - '/give {username} mycelium 32'
  177. '30':
  178. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  179. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  180. commands:
  181. - '/give {username} iron_nugget 1'
  182. '30':
  183. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  184. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  185. commands:
  186. - '/give {username} iron_horse_armor 1'
  187. '30':
  188. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  189. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  190. commands:
  191. - '/give {username} rabbit_foot 1'
  192. '30':
  193. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  194. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  195. commands:
  196. - '/give {username} deadbush 1'
  197. '40':
  198. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  199. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  200. commands:
  201. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:2,lvl:4}]}'
  202. '40':
  203. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  204. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  205. commands:
  206. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:1,lvl:4}]}'
  207. '40':
  208. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  209. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  210. commands:
  211. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:3,lvl:4}]}'
  212. '40':
  213. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  214. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  215. commands:
  216. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:0,lvl:4}]}'
  217. '40':
  218. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  219. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  220. commands:
  221. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:4,lvl:4}]}'
  222. '40':
  223. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  224. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  225. commands:
  226. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:70,lvl:1}]}'
  227. '40':
  228. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  229. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  230. commands:
  231. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:22,lvl:3}]}'
  232. '40':
  233. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  234. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  235. commands:
  236. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:34,lvl:3}]}'
  237. '40':
  238. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  239. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  240. commands:
  241. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:51,lvl:1}]}'
  242. '40':
  243. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  244. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  245. commands:
  246. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:35,lvl:3}]}'
  247. '40':
  248. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  249. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  250. commands:
  251. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:33,lvl:1}]}'
  252. '40':
  253. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  254. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  255. commands:
  256. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:5,lvl:3}]}'
  257. '45':
  258. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  259. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  260. commands:
  261. - '/give {username} enchanted_book 1 0 {StoredEnchantments:[{id:18,lvl:1}]}'
  262. '50':
  263. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  264. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  265. commands:
  266. - '/give {username} golden_horse_armor 1'
  267. '70':
  268. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  269. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  270. commands:
  271. - '/give {username} diamond_leggings 1 0 {display:{Name:"Ovrtymes Thong",Lore:[2 out of 11 collectibles]},ench:[{id:10,lvl:1}]}'
  272. '70':
  273. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  274. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  275. commands:
  276. - '/give {username} dragon_breath 1 0 {display:{Name:"Dragons Mouthwash",Lore:[3 out of 11 collectibles]}}'
  277. '70':
  278. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  279. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  280. commands:
  281. - '/give {username} iron_sword 1 0 {display:{Name:"Clifs Hacker Attacker",Lore:[4 out of 11 collectibles]},ench:[{id:16,lvl:5}]}'
  282. '70':
  283. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  284. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  285. commands:
  286. - '/give {username} bow 1 0 {display:{Name:"NightHawkeye Bow",Lore:[5 out of 11 collectibles]},ench:[{id:51,lvl:1},{id:48,lvl:5}]}'
  287. '70':
  288. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  289. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  290. commands:
  291. - '/give {username} string 1 0 {display:{Name:"Gazs g-string",Lore:[6 out of 11 collectibles]}}'
  292. '70':
  293. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  294. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  295. commands:
  296. - '/give {username} fishing_rod 1 0 {display:{Name:"The Toad Catcher",Lore:[7 out of 11 collectibles]},ench:[{id:62,lvl:3}]}'
  297. '70':
  298. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  299. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  300. commands:
  301. - '/give {username} diamond_pickaxe 1 0 {display:{Name:"Devos Chunk Corruptor",Lore:[8 out of 11 collectibles]},ench:[{id:34,lvl:3},{id:32,lvl:5}]}'
  302. '70':
  303. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  304. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  305. commands:
  306. - '/give {username} map 1 0 {display:{Name:"Fieros Voxel Map",Lore:[9 out of 11 collectibles]}}'
  307. '70':
  308. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  309. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  310. commands:
  311. - '/give {username} shulker_shell 1 0 {display:{Name:"Shreks Shulker Shell",Lore:[10 out of 11 collectibles]}}'
  312. '70':
  313. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  314. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  315. commands:
  316. - '/give {username} poisonous_potato 1 0 {display:{Name:"Nieblues Internet",Lore:[11 out of 11 collectibles]}}'
  317. '75':
  318. broadcast: '{GREEN}{username} {GOLD}received a collectible!'
  319. playermessage: '{AQUA}As a thanks for voting, you've recieved a collectible!'
  320. commands:
  321. - '/give {username} bedrock 1 0 {display:{Name:"Yatzys Foundation Rock",Lore:[1 out of 11 collectibles]}}'
  322. '80':
  323. broadcast: '{GREEN}{username} {GOLD}received a reward!'
  324. playermessage: '{AQUA}As a thanks for voting, you've recieved a reward!'
  325. commands:
  326. - '/give {username} diamond_horse_armor 1'
  327. '80':
  328. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  329. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  330. commands:
  331. - '/give {username} skull 1 0'
  332. '80':
  333. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  334. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  335. commands:
  336. - '/give {username} skull 1 1'
  337. '80':
  338. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  339. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  340. commands:
  341. - '/give {username} skull 1 2'
  342. '80':
  343. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  344. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  345. commands:
  346. - '/give {username} skull 1 4'
  347. '90':
  348. broadcast: '{GREEN}{username} {GOLD}received a lucky reward!'
  349. playermessage: '{AQUA}As a thanks for voting, you've recieved a lucky reward!'
  350. commands:
  351. - '/give {username} skull 1 5'
  352. '150':
  353. broadcast: '{GREEN}{username} {GOLD}received an extra lucky reward!'
  354. playermessage: '{AQUA}As a thanks for voting, you've recieved a extra lucky reward!'
  355. commands:
  356. - '/give {username} purple_shulker_box 1'
  357. '250':
  358. broadcast: '{GREEN}{username} {GOLD}received an extra lucky reward!'
  359. playermessage: '{AQUA}As a thanks for voting, you've recieved a extra lucky reward!'
  360. commands:
  361. - '/give {username} beacon 1'
  362. '350':
  363. broadcast: '{GREEN}{username} {GOLD}received an extra lucky reward!'
  364. playermessage: '{AQUA}As a thanks for voting, you've recieved a extra lucky reward!'
  365. commands:
  366. - '/give {username} elytra 1'
  367. '370':
  368. broadcast: '{GREEN}{username} {GOLD}received an extra lucky reward!'
  369. playermessage: '{AQUA}As a thanks for voting, you've recieved a extra lucky reward!'
  370. commands:
  371. - '/give {username} golden_apple 1 1'
  372. '700':
  373. broadcast: '{GREEN}{username} {GOLD}received an extra lucky reward!'
  374. playermessage: '{AQUA}As a thanks for voting, you've recieved a extra lucky reward!'
  375. commands:
  376. - '/give {username} totem_of_undying 1'
  377.  
  378.  
  379. # permission reward section
  380. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  381.  
  382. perms:
  383. double:
  384. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  385. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  386. commands:
  387. - '/give {username} 264 10'
  388.  
  389. # cumulative reward section
  390. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  391.  
  392. cumulative:
  393. '10':
  394. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}30 Xp Lvs!'
  395. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  396. rewardmessage: '30x Xp Lv'
  397. commands:
  398. - '/xp 30l {username}'
  399.  
  400. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  401.  
  402. blocked:
  403. - world_blocked
  404.  
  405. # Available formatting codes for messages:
  406.  
  407. # {service} {servicename} {SERVICE} = service name
  408. # {username} {player} {name} = player username
  409. # {votes} = current vote total
  410. # & = Colour Symbol to enter manual colours / control codes
  411. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  412. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  413. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  414. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  415. # {STRIKETHROUGH} {MAGIC} {RESET}
  416.  
  417. votemessage:
  418. - '{GOLD}-----------------------------------------------------'
  419. - 'Vote for us every day for in game rewards and extras'
  420. - '{GOLD}-----------------------------------------------------'
  421. - '{AQUA}You currently have {GREEN}{votes} Votes'
  422.  
  423. remindmessage:
  424. - '{GOLD}-----------------------------------------------------'
  425. - 'You have not voted recently, please vote to support the server'
  426. - '{GOLD}-----------------------------------------------------'
  427. - '{AQUA}You currently have {GREEN}{votes} Votes'
  428.  
  429. joinmessage:
  430. - '{GOLD}-----------------------------------------------------'
  431. - 'Vote for us every day for in game rewards and extras'
  432. - '{GOLD}-----------------------------------------------------'
  433. - '{AQUA}You currently have {GREEN}{votes} Votes'
  434.  
  435. # Additional formatting codes for below:
  436.  
  437. # {TOTAL} = vote total - used for /rewards
  438. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  439. # {POSITION} = current rank - used for /votetop
  440. # {username} = player name - used for /votetop
  441.  
  442. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  443. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  444. rewardheader:
  445. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  446. votetopheader:
  447. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  448. rewardfooter:
  449. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement