Advertisement
Valtrion

GaListener Laatste <3

Feb 5th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.79 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: true
  33. cumulative: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: false
  39. joinmessage: true
  40. voteremind: false
  41. remindseconds: 300
  42. ratelimit: 10
  43. logfile: false
  44. dbMode: 'sqlite'
  45. dbFile: 'GAL.db'
  46. dbHost: '217.182.219.223'
  47. dbPort: 2897
  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} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  59. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  60. commands:
  61. - '/crate key vote {username} 1'
  62. - '/xp give {username} 10'
  63. MC-Index:
  64. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  65. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  66. commands:
  67. - '/crate key vote {username} 1'
  68.  
  69. # luckyvotes section
  70. # 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.
  71.  
  72. luckyvotes:
  73. '10':
  74. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  75. playermessage: '{GREEN}You were lucky and received an extra $1000!'
  76. commands:
  77. - '/eco give {username} 1000'
  78. '50':
  79. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
  80. playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
  81. commands:
  82. - '/xp give {username} 100'
  83. - '/eco give {username} 1000'
  84.  
  85. # permission reward section
  86. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  87.  
  88. perms:
  89. youtube:
  90. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  91. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  92. commands:
  93. - '/crate key {username} youtube 1'
  94. - '/xp give {username} 10'
  95. donator:
  96. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  97. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  98. commands:
  99. - '/crate key {username} donator 1'
  100. - '/xp give {username} 20'
  101. pixer:
  102. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  103. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  104. commands:
  105. - '/crate key {username} pixer 1'
  106. - '/xp give {username} 25'
  107. snow:
  108. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  109. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  110. commands:
  111. - '/crate key {username} snow 1'
  112. - '/xp give {username} 30'
  113. snowball:
  114. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  115. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  116. commands:
  117. - '/crate key {username} snowball 1'
  118. - '/xp give {username} 35'
  119. immortal:
  120. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  121. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  122. commands:
  123. - '/crate key {username} immortal 1'
  124. - '/xp give {username} 40'
  125. sponsor:
  126. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  127. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  128. commands:
  129. - '/crate key {username} sponsor 1'
  130. - '/xp give {username} 45'
  131. creator:
  132. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  133. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  134. commands:
  135. - '/crate key {username} creator 1'
  136. - '/xp give {username} 50'
  137. hero:
  138. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  139. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  140. commands:
  141. - '/crate key {username} hero 1'
  142. - '/xp give {username} 55'
  143. snowpix:
  144. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  145. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  146. commands:
  147. - '/crate key {username} snowpix 1'
  148. - '/xp give {username} 60'
  149. champion:
  150. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  151. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  152. commands:
  153. - '/crate key {username} champion 1'
  154. - '/xp give {username} 65'
  155. veteran:
  156. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  157. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  158. commands:
  159. - '/crate key {username} veteran 1'
  160. - '/xp give {username} 70'
  161. snowpixer+:
  162. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  163. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  164. commands:
  165. - '/crate key {username} snowpixer+ 1'
  166. - '/xp give {username} 75'
  167.  
  168. # cumulative reward section
  169. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  170.  
  171. cumulative:
  172. '10':
  173. broadcast: '{GREEN}{username} {WHITE}Heeft gevoted via {GREEN}{service}{WHITE}! - #GG'
  174. playermessage: '{WHITE}Dankje voor het {GREEN}voten{WHITE}!'
  175. rewardmessage: '20x Diamond'
  176. commands:
  177. - '/give {username} 264 20'
  178.  
  179. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  180.  
  181. blocked:
  182. - world_blocked
  183.  
  184. # Available formatting codes for messages:
  185.  
  186. # {service} {servicename} {SERVICE} = service name
  187. # {username} {player} {name} = player username
  188. # {votes} = current vote total
  189. # & = Colour Symbol to enter manual colours / control codes
  190. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  191. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  192. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  193. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  194. # {STRIKETHROUGH} {MAGIC} {RESET}
  195.  
  196. votemessage:
  197. - '{GRAY}{STRIKE}------------------------'
  198. - '{GRAY}Je hebt nu {GREEN}{votes} {GRAY}votes'
  199. - '{GRAY}-'
  200. - '{GRAY}Vote link:'
  201. - '{GREEN}SnowPix.jouwweb.nl'
  202. - '{GRAY}-'
  203. - '{GRAY}{STRIKE}------------------------'
  204.  
  205. remindmessage:
  206. - '{GRAY}{STRIKE}------------------------'
  207. - '{GRAY}Je hebt nu {GREEN}{votes} {GRAY}votes'
  208. - '{GRAY}-'
  209. - '{GRAY}Vote link:'
  210. - '{GREEN}SnowPix.jouwweb.nl'
  211. - '{GRAY}-'
  212. - '{GRAY}{STRIKE}------------------------'
  213.  
  214. joinmessage:
  215. - '{GRAY}{STRIKE}--------------------------------'
  216.  
  217. # Additional formatting codes for below:
  218.  
  219. # {TOTAL} = vote total - used for /rewards
  220. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  221. # {POSITION} = current rank - used for /votetop
  222. # {username} = player name - used for /votetop
  223.  
  224. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  225. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  226. rewardheader:
  227. - '{GRAY}{STRIKE}------------------------'
  228. - '{GRAY}Je hebt nu {GREEN}{votes} {GRAY}votes'
  229. - '{GRAY}-'
  230. - '{GRAY}Vote link:'
  231. - '{GREEN}SnowPix.jouwweb.nl'
  232. - '{GRAY}-'
  233. - '{GRAY}{STRIKE}------------------------'
  234. votetopheader:
  235. - '{GRAY}{STRIKE}------------------------'
  236. - '{GRAY}Je hebt nu {GREEN}{votes} {GRAY}votes'
  237. - '{GRAY}-'
  238. - '{GRAY}Vote link:'
  239. - '{GREEN}SnowPix.jouwweb.nl'
  240. - '{GRAY}-'
  241. - '{GRAY}{STRIKE}------------------------'
  242. rewardfooter:
  243. - '{GRAY}{STRIKE}------------------------'
  244. - '{GRAY}Je hebt nu {GREEN}{votes} {GRAY}votes'
  245. - '{GRAY}-'
  246. - '{GRAY}Vote link:'
  247. - '{GREEN}SnowPix.jouwweb.nl'
  248. - '{GRAY}-'
  249. - '{GRAY}{STRIKE}------------------------'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement