Guest User

Untitled

a guest
Sep 16th, 2017
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.85 KB | None | 0 0
  1. # GAListener v1.4.5
  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. # ignoreoffline - Ignore votes for players who are offline
  8. # luckyvote - Enables the lucky voting section for voters to have a random chance to receive additional rewards when they vote.
  9. # permvote - Enables the permission voting section for voters to receive different rewards based upon their permissions.
  10. # cumulative - Enables the cumulative voting section for voters to receive rewards once they have reached a certain number of votes.
  11. # broadcastqueue - Show broadcast message for queued votes.
  12. # broadcastoffline - Show broadcast message for offline queued votes.
  13. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  14. # votecommand - Enables the /vote command which will show the message contained in the votemessage section.
  15. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  16. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  17. # voteremind - Message players who have not voted in the last 24 hours. Shows the message contained in the remindmessage section.
  18. # remindseconds - How often (in seconds) between each reminder message.
  19. # votesigns - Auto update top voter signs / skulls by using signs with "[galtop]" as the first line and a position number as the second
  20. # signupdateseconds - How often (in seconds) between updating top voter signs
  21. # ratelimit - Ignore votes received within this many seconds since the last vote for the same player on the same site.
  22. # logfile - Log received votes to vote.log file.
  23. # countvotes - Should votes be counted towards total? This will also disable cumulative voting if false.
  24. # verbose - show extra information in the logs
  25. # dbMode - Database mode. Use either mysql or sqlite.
  26. # dbFile - Database filename for SQLite.
  27. # dbHost - Database IP / Hostname for MySQL.
  28. # dbPort - Database port for MySQL.
  29. # dbUser - Database username for MySQL.
  30. # dbPass - Database password for MySQL.
  31. # dbName - Database name for MySQL.
  32. # dbPrefix - Database table prefix.
  33.  
  34. settings:
  35. onlineonly: true
  36. ignoreoffline: false
  37. luckyvote: false
  38. permvote: false
  39. cumulative: false
  40. broadcastqueue: true
  41. broadcastrecent: true
  42. broadcastoffline: false
  43. votecommand: true
  44. rewardcommand: true
  45. joinmessage: false
  46. voteremind: false
  47. remindseconds: 300
  48. votesigns: false
  49. signupdateseconds: 600
  50. ratelimit: 10
  51. logfile: false
  52. countvotes: true
  53. verbose: false
  54. dbMode: "sqlite"
  55. dbFile: "GAL.db"
  56. dbHost: "localhost"
  57. dbPort: 3306
  58. dbUser: "root"
  59. dbPass: ""
  60. dbName: "GAL"
  61. dbPrefix: ""
  62.  
  63. # services section (default is used if service does not exist)
  64. # The example below would give 5 diamonds per vote.
  65.  
  66. services:
  67. default:
  68. broadcast: '{AQUA}{BOLD}{username} {GRAY}voted for epic rewards @ {GREEN}{BOLD}/vote{GRAY}'
  69. playermessage: '{GRAY}Thanks for voting at {AQUA}{BOLD}server{GRAY}!'
  70. commands:
  71. - '/crate givekey {username} VoteCrate 1'
  72. - '/eco give {username} 5000'
  73. - '/give {username} 264 4'
  74.  
  75. # luckyvotes section
  76. # 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.
  77.  
  78. luckyvotes:
  79. "10":
  80. broadcast: "{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!"
  81. playermessage: "{GREEN}You were lucky and received an extra $1000!"
  82. slotsrequired: 0
  83. commands:
  84. - "/eco give {username} 1000"
  85. "50":
  86. broadcast: "{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!"
  87. playermessage: "{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!"
  88. slotsrequired: 0
  89. commands:
  90. - "/xp give {username} 100"
  91. - "/eco give {username} 1000"
  92.  
  93. # permission reward section
  94. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  95.  
  96. perms:
  97. double:
  98. broadcast: "{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!"
  99. playermessage: "{GREEN}Thanks for voting at {AQUA}{service}!"
  100. slotsrequired: 1
  101. commands:
  102. - "/give {username} 264 10"
  103.  
  104. # cumulative reward section
  105. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  106.  
  107. cumulative:
  108. "10":
  109. broadcast: "{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}20 Diamonds!"
  110. playermessage: "{GREEN}Thanks for voting {AQUA}10 times!"
  111. rewardmessage: "20x Diamond"
  112. slotsrequired: 1
  113. commands:
  114. - "/give {username} 264 20"
  115.  
  116. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  117.  
  118. blocked:
  119. - world_blocked
  120.  
  121. # blocked-regions - a list of WorldGuard regions where rewards should be disabled, they will remain queued until the player relogs, changes world or teleports.
  122.  
  123. blocked-regions:
  124. - region_blocked
  125.  
  126. # Available formatting codes for messages:
  127.  
  128. # {service} {servicename} {SERVICE} = service name
  129. # {username} {player} {name} = player username
  130. # {votes} = current vote total
  131. # {uuid} = uuid string e.g. "de305d54-75b4-431b-adb2-eb6b9e546013"
  132. # & = Colour Symbol to enter manual colours / control codes
  133. # \uXXXX = Unicode symbol (where XXXX is the code)
  134. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  135. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  136. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  137. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  138. # {STRIKETHROUGH} {MAGIC} {RESET}
  139.  
  140. votemessage:
  141. - ''
  142. - ' {WHITE}{BOLD}Vote everyday for {AQUA}{BOLD}amazing {WHITE}{BOLD}rewards:'
  143. - ' {AQUA}- x1 Vote Crate Key'
  144. - ' {AQUA}- 4 Diamonds'
  145. - ' {AQUA}- $5000'
  146. - ''
  147. - '
  148. {WHITE}{BOLD}>{AQUA}{BOLD}> Link #1 {WHITE}{BOLD}https://goo.gl/h9Tp69 {AQUA}{BOLD}<{WHITE}{BOLD}<'
  149. - '
  150. - ' {WHITE}{BOLD}>{AQUA}{BOLD}> Link #2 {WHITE}{BOLD}>{AQUA}{BOLD}> {WHITE}{BOLD}https://goo.gl/vntX7X {GOLD}{BOLD}<{YELLOW}{BOLD}<'
  151. - '
  152. - ' {WHITE}{BOLD}>{AQUA}{BOLD}> Link #3 {WHITE}{BOLD}>{AQUA}{BOLD}> {YELLOW}{BOLD}https://goo.gl/E79i3C {AQUA}{BOLD}<{WHITE}{BOLD}<'
  153. - '
  154. {WHITE}{BOLD}>{AQUA}{BOLD}> Link #4 {WHITE}{BOLD}>{AQUA}{BOLD}> {WHITE}{BOLD}https://goo.gl/rvuXE4 {GOLD}{BOLD}<{YELLOW}{BOLD}<'
  155. - ''
  156. {WHITE}{BOLD}>{AQUA}{BOLD}> Link #5 {WHITE}{BOLD}>{AQUA}{BOLD}> {WHITE}{BOLD}https://goo.gl/Cz1Sem {AQUA}{BOLD}<{WHITE}{BOLD}<'
  157.  
  158. {WHITE}{BOLD}>{AQUA}{BOLD}> Link #6 {WHITE}{BOLD}>{AQUA}{BOLD}> {WHITE}{BOLD}https://goo.gl/vrf66D {GOLD}{BOLD}<{YELLOW}{BOLD}<'
  159.  
  160. remindmessage:
  161. - ''
  162.  
  163. joinmessage:
  164. - ''
  165.  
  166. # Additional formatting codes for below:
  167.  
  168. # {TOTAL} = vote total - used for /rewards
  169. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  170. # {POSITION} = current rank - used for /votetop and top voter signs
  171. # {username} = player name - used for /votetop and top voter signs
  172.  
  173. rewardformat: "{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}"
  174. votetopformat: "{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}"
  175. rewardheader:
  176. - "{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------"
  177. votetopheader:
  178. - "{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------"
  179. rewardfooter:
  180. - "{AQUA}You currently have {GREEN}{votes} Votes"
  181. topsignformat:
  182. - "Top Voter #{POSITION}"
  183. - "{username}"
  184. - "{votes} Votes"
  185. - "=========="
Add Comment
Please, Sign In to add comment