Advertisement
Guest User

Untitled

a guest
Feb 1st, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.05 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: true
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: true
  39. joinmessage: true
  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: '&4&l{username} &c&lhas voted @ &a&l{service} &c&land got 16 tnt and $1500'
  59. playermessage: '&b&lThanks for voting!'
  60. commands:
  61. - '/give {username} 46 16'
  62. - '/eco give {username} 1500'
  63. MC-Index:
  64. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}MC-Index.com {GOLD}and received {GREEN] 16 tnt and $1500'
  65. playermessage: '&b&lThanks for voting!'
  66. commands:
  67. - '/give {username} 46 16'
  68. - '/eco give {username} 1500'
  69. MC-Index:
  70. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}MC-Index.com {GOLD}and received {GREEN] 16 tnt and $1500'
  71. playermessage: '&b&lThanks for voting!'
  72. commands:
  73. - '/give {username} 46 16'
  74. - '/eco give {username} 1500'
  75.  
  76. # luckyvotes section
  77. # 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.
  78.  
  79. luckyvotes:
  80. '10':
  81. broadcast: '&4&l{username} &c&lhas voted and got lucky'
  82. playermessage: '&b&lThanks for voting!'
  83. commands:
  84. - '/kit vox {username}'
  85. - '/give {username} 120 2'
  86. - '/eco give {username} 2500'
  87. '50':
  88. broadcast: '&4&l{username} &c&lhas voted and got really lucky'
  89. playermessage: '&b&lThanks for voting!'
  90. commands:
  91. - '/kit vega {username}'
  92. - '/eco give {username} 10000'
  93. - '/give {user} MOB_SPAWNER 2'
  94. - '/give {username} 120 4'
  95. '100':
  96. broadcast: '&4&l{username} &c&lhas voted and got super lucky'
  97. playermessage: '&b&lThanks for voting!'
  98. commands:
  99. - '/kit titania {username}'
  100. - '/eco give {username} 25000'
  101. - '/give {user} MOB_SPAWNER 4'
  102. - '/give {username} 120 8'
  103. # permission reward section
  104. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  105.  
  106. perms:
  107. double:
  108. broadcast: '&c&lGot 2x the rewards so he/she got, &4&l32 tnt &c&l and &a&l$3000'
  109. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  110. commands:
  111. - '/give {username} 46 32'
  112. - '/eco give {username} 3000'
  113. Triple:
  114. broadcast: '&c&lGot 3x the rewards so he/she got, &4&l48 tnt &c&l and &a&l$4500'
  115. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  116. commands:
  117. - '/give {username} 46 48'
  118. - '/eco give {username} 4500'
  119. Quad:
  120. broadcast: '&c&lGot 3x the rewards so he/she got, &4&l64 tnt &c&l and &a&l$5000'
  121. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  122. commands:
  123. - '/give {username} 46 64'
  124. - '/eco give {username} 5000'
  125. # cumulative reward section
  126. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  127.  
  128. cumulative:
  129. '10':
  130. broadcast: '&4&l{username} &c&lhas voted 10 times &c&land got &7&lKit Sona &e&land &5&l64 Obsidian'
  131. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  132. rewardmessage: '&7&lKit Sona &e&land &5&l64 Obsidian'
  133. commands:
  134. - '/kit sona {username}'
  135. - '/give {username} 49 64'
  136. '25':
  137. broadcast: '&4&l{username} &c&lhas voted 25 times &c&land got &7&lKit Vox&e&l, &5&l128 Obsidian&e&l, and &6&l2 Endportal Frames'
  138. playermessage: '{GREEN}Thanks for voting {AQUA}25 times!'
  139. rewardmessage: '&7&lKit Vox&e&l, &5&l128 Obsidian&e&l, and &6&l2 Endportal Frames'
  140. commands:
  141. - '/kit Vox {username}'
  142. - '/give {username} 49 128'
  143. - '/give {username} 120 2'
  144. '50':
  145. broadcast: '&4&l{username} &c&lhas voted 50 times &c&land got &7&lKit Vega&e&l, &5&l196 Obsidian&e&l, and &6&l4 Endportal Frames'
  146. playermessage: '{GREEN}Thanks for voting {AQUA}50 times!'
  147. rewardmessage: '&7&lKit Vega&e&l, &5&l196 Obsidian&e&l, and &6&l4 Endportal Frames'
  148. commands:
  149. - '/kit Vega {username}'
  150. - '/give {username} 49 196'
  151. - '/give {username} 120 4'
  152. '100':
  153. broadcast: '&4&l{username} &c&lhas voted 100 times &c&land got &7&lKit Titania&e&l, &5&l260 Obsidian&e&l, and &6&l8 Endportal Frames'
  154. playermessage: '{GREEN}Thanks for voting {AQUA}100 times!'
  155. rewardmessage: '&7&lKit Titania&e&l, &5&l260 Obsidian&e&l, and &6&l8 Endportal Frames'
  156. commands:
  157. - '/kit Titania {username}'
  158. - '/give {username} 49 260'
  159. - '/give {username} 120 8'
  160.  
  161. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  162.  
  163. blocked:
  164. - world_blocked
  165.  
  166. # Available formatting codes for messages:
  167.  
  168. # {service} {servicename} {SERVICE} = service name
  169. # {username} {player} {name} = player username
  170. # {votes} = current vote total
  171. # & = Colour Symbol to enter manual colours / control codes
  172. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  173. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  174. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  175. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  176. # {STRIKETHROUGH} {MAGIC} {RESET}
  177.  
  178. votemessage:
  179. - '&e&l&m--------------------------------------------'
  180. - '&8&lVote for us at from the following links:'
  181. - '&a&lhttp://topg.org/Minecraft/in-424559'
  182. - '&a&lhttp://www.minecraft-index.com/45607-cosmicnova/vote'
  183. - '&a&lhttp://www.planetminecraft.com/server/cosmicnova/'
  184. - '&e&l&m--------------------------------------------'
  185. - '{AQUA}You currently have {GREEN}{votes} Votes'
  186.  
  187. remindmessage:
  188. - '&e&l&m--------------------------------------------'
  189. - '&c&lYou have not voted recently, please vote to support the server'
  190. - '&e&l&m--------------------------------------------'
  191. - '{AQUA}You currently have {GREEN}{votes} Votes'
  192.  
  193. joinmessage:
  194. - '&e&l&m--------------------------------------------'
  195. - '&8&lVote for us at from the following links:'
  196. - '&a&lhttp://topg.org/Minecraft/in-424559'
  197. - '&a&lhttp://www.minecraft-index.com/45607-cosmicnova/vote'
  198. - '&a&lhttp://www.planetminecraft.com/server/cosmicnova/'
  199. - '&e&l&m--------------------------------------------'
  200. - '{AQUA}You currently have {GREEN}{votes} Votes'
  201.  
  202. # Additional formatting codes for below:
  203.  
  204. # {TOTAL} = vote total - used for /rewards
  205. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  206. # {POSITION} = current rank - used for /votetop
  207. # {username} = player name - used for /votetop
  208.  
  209. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  210. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  211. rewardheader:
  212. - '&e&l&m----------------&8&l[&a&lRewards&8&l]&e&l&m----------------'
  213. votetopheader:
  214. - '&e&l&m----------------&8&l[&a&lTop Voters&8&l]&e&l&m----------------'
  215. rewardfooter:
  216. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement