Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.38 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: false
  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: true
  44. dbMode: 'logfile'
  45. dbFile: 'GAL.db'
  46. dbHost: 'localhost'
  47. dbPort: 3306
  48. dbUser: 'root'
  49. dbPass: 'Z1I54c989g3o'
  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: ''
  59. playermessage: '&cThanks for voting at &c{service}!'
  60. commands:
  61. - '/vote21239 &c{username} &fhas voted @ &c{service} &fand received &c&l10x Global XP&c, 1x &b&lVote&7&lKey&r&f,&c 1x Token and &cVote Particles for 1 hour!'
  62. - '/cc give P Voting 1 {player}'
  63. - '/pe tempgive {username} vote 3600'
  64. MC-Index:
  65. broadcast: ''
  66. playermessage: '&cThanks for voting at &c{service}!'
  67. commands:
  68. - '/vote21239 &c{username} &fhas voted @ &c{service} &fand received &c 1x &b&lVote&7&lKey&r&f and &cVote Particles for 1 hour!'
  69. - '/cc give P Voting 1 {player}'
  70. - '/pe tempgive {username} vote 3600'
  71.  
  72. # luckyvotes section
  73. # 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.
  74.  
  75. luckyvotes:
  76. '57':
  77. broadcast: ''
  78. playermessage: '&8(&b&k&li&8) &cYou were lucky and received 1x VoteKey!'
  79. commands:
  80. - '/bc &c{username} &fwas lucky and received &c1x VoteKey!'
  81. - '/cc give P Voting 1 {player}'
  82.  
  83. '58':
  84. broadcast: ''
  85. playermessage: '&8(&b&k&li&8) &cYou were lucky and received 3x VoteKey!'
  86. commands:
  87. - '/bc &c{username} &fwas lucky and received &c3x VoteKey!'
  88. - '/cc give P Voting 3 {player}'
  89.  
  90. '68':
  91. broadcast: ''
  92. playermessage: '&8(&b&k&li&8) &cYou were lucky and received 1x CommonKey!'
  93. commands:
  94. - '/bc &c{username} &fwas lucky and received &c1x CommonKey!'
  95. - '/cc give P Common 1 {player}'
  96.  
  97. '69':
  98. broadcast: ''
  99. playermessage: '&8(&b&k&li&8) &cYou were lucky and received 3x CommonKey!'
  100. commands:
  101. - '/bc &c{username} &fwas lucky and received &c3x CommonKey!'
  102. - '/cc give P Common 3 {player}'
  103.  
  104. '88':
  105. broadcast: ''
  106. playermessage: '&8(&b&k&li&8) &cYou were lucky and received 1x RareKey!'
  107. commands:
  108. - '/bc &c{username} &fwas lucky and received &c1x RareKey!'
  109. - '/cc give P Rare 1 {player}'
  110.  
  111. '89':
  112. broadcast: ''
  113. playermessage: '&8(&b&k&li&8) &cYou were lucky and received 3x RareKey!'
  114. commands:
  115. - '/bc &c{username} &fwas lucky and received &c3x RareKey!'
  116. - '/cc give P Rare 3 {player}'
  117.  
  118. '97':
  119. broadcast: ''
  120. playermessage: '&8(&b&k&li&8) &cYou were lucky and received 2x ExoticKey!'
  121. commands:
  122. - '/bc &c{username} &fwas lucky and received &c2x ExoticKey!'
  123. - '/cc give P Legendary 2 {player}'
  124.  
  125. # permission reward section
  126. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  127.  
  128. perms:
  129. double:
  130. broadcast: '&c{username} &fhas voted @ &c{service} &fand received &c10 Diamonds!'
  131. playermessage: '&cThanks for voting at &c{service}!'
  132. commands:
  133. - '/give {username} 264 10'
  134.  
  135. # cumulative reward section
  136. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  137.  
  138. cumulative:
  139.  
  140. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  141.  
  142. blocked:
  143. - world_blocked
  144.  
  145. # Available formatting codes for messages:
  146.  
  147. # {service} {servicename} {SERVICE} = service name
  148. # {username} {player} {name} = player username
  149. # {votes} = current vote total
  150. # & = Colour Symbol to enter manual colours / control codes
  151. # &c {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  152. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} &f
  153. # &f &c {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  154. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  155. # {STRIKETHROUGH} {MAGIC} {RESET}
  156.  
  157. votemessage:
  158. - '&f'
  159. - '&2&lVote for us every day!'
  160. - '&aSupport our server and receive amazing rewards!'
  161. - '&f'
  162. - '&cYou currently have &4{votes} &cvotes.'
  163. - '&f'
  164. - '&8&l> &b&l&nwww.sabamc.me/vote'
  165. - '&f'
  166.  
  167. remindmessage:
  168. - '&f'
  169. - '&2&lVote for us every day!'
  170. - '&aSupport our server and receive amazing rewards!'
  171. - '&f'
  172. - '&cYou currently have &4{votes} &cvotes.'
  173. - '&f'
  174. - '&8&l> &b&l&nwww.sabamc.me/vote'
  175. - '&f'
  176.  
  177. joinmessage:
  178. - '&f'
  179. - '&2&lVote for us every day!'
  180. - '&aSupport the server and receive amazing rewards!'
  181. - '&f'
  182. - '&cYou currently have &4{votes} &cvotes.'
  183. - '&f'
  184. - '&8&l> &b&l&nwww.corecraft.me/vote'
  185. - '&f'
  186.  
  187. # Additional formatting codes for below:
  188.  
  189. # {TOTAL} = vote total - used for /rewards
  190. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  191. # {POSITION} = current rank - used for /votetop
  192. # {username} = player name - used for /votetop
  193.  
  194. rewardformat: '&c{TOTAL} Votes &f- &c{REWARD}'
  195. votetopformat: '{POSITION}. &c{username} - {WHITE}{TOTAL}'
  196. rewardheader:
  197. - '&f---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] &f----------------'
  198. votetopheader:
  199. - '&f---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] &f----------------'
  200. rewardfooter:
  201. - '&cYou currently have &c{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement