Advertisement
Guest User

Vote

a guest
Jun 28th, 2017
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.03 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: true
  34. broadcastqueue: true
  35. broadcastrecent: true
  36. broadcastoffline: false
  37. votecommand: true
  38. rewardcommand: true
  39. joinmessage: true
  40. voteremind: true
  41. remindseconds: 120
  42. ratelimit: 10
  43. logfile: false
  44. dbMode: 'sqlite'
  45. dbFile: 'GAL.db'
  46. dbHost: 'localhost'
  47. dbPort: 10204
  48. dbUser: 'root'
  49. dbPass: ''
  50. dbName: 'GAL'
  51. dbPrefix: ''
  52.  
  53.  
  54. services:
  55. default:
  56. broadcast: '{GOLD}{username}{WHITE} has voted and received{UNDERLINE} $1000, 1 Vote Key, 5 Diamonds, 5 TnT, 250 EXP, and 2 mcMMO{RED}!'
  57. playermessage: ''
  58. commands:
  59. - '/give {username} 264 5'
  60. - '/give {username} 46 5'
  61. - '/eco give {username} 1000'
  62. - '/addcredits {username} 5'
  63. - '/exp give {username} 250'
  64. - '/crate givekey {username} Vote 1'
  65. - '/givecoins %player% 1'
  66.  
  67. # luckyvotes section
  68. # 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.
  69.  
  70. luckyvotes:
  71. '5':
  72. broadcast: '{GRAY}[{DARK_AQUA}LUCKY{GRAY}] {DARK_AQUA}{username} {GRAY}was lucky and received an {DARK_AQUA}extra $1000 and 100 EXP!'
  73. playermessage: ''
  74. commands:
  75. - '/eco give {username} 1000'
  76. - '/exp give {username} 100'
  77.  
  78. # permission reward section
  79. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  80.  
  81. perms:
  82. double:
  83. broadcast:'{GOLD}{username}{WHITE} has voted and received{UNDERLINE} $2000, 2 Vote Key, 10 Diamonds, 510TnT, 500 EXP, and 4 mcMMO{RED}!'
  84. playermessage: ''
  85. commands:
  86. - '/give {username} 264 10'
  87. - '/give {username} 46 10'
  88. - '/eco give {username} 2000'
  89. - '/addcredits {username} 4'
  90. - '/exp give {username} 500'
  91. - '/crate givekey {username} Vote 2'
  92. - '/givecoins %player% 2'
  93.  
  94. # cumulative reward section
  95. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  96.  
  97. cumulative:
  98. '5':
  99. broadcast: ''
  100. playermessage: '{GRAY}Thanks for voting {DARK_AQUA}5 times!'
  101. rewardmessage: '{DARK_AQUA} 40 mcMMO'
  102. commands:
  103. - '/addcredits {username} 20'
  104.  
  105. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  106.  
  107. blocked:
  108. - world_blocked
  109.  
  110. # Available formatting codes for messages:
  111.  
  112. # {service} {servicename} {SERVICE} = service name
  113. # {username} {player} {name} = player username
  114. # {votes} = current vote total
  115. # & = Colour Symbol to enter manual colours / control codes
  116. # {AQUA} {BLACK} {DARK_AQUA} {DARK_AQUA} {DARK_BLUE}
  117. # {DARK_GRAY} {DARK_GRAY} {GRAY} {DARK_RED} {DARK_AQUA}
  118. # {GRAY} {GRAY} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  119. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  120. # {STRIKETHROUGH} {MAGIC} {RESET}
  121.  
  122. votemessage:
  123. - '{GRAY}---------------------------------------------------'
  124. - '{DARK_AQUA}Vote for RumbleServer to receive some good rewards!'
  125. - '{DARK_AQUA}Vote 1 - {GOLD}http://minecraftservers.org/server/436138'
  126. - '{DARK_AQUA}Vote 2 - {GOLD}http://www.minecraft-index.com/57231-rumblecraft/vote'
  127. - '{DARK_AQUA}Vote 3 - {GOLD}http://minecraft-mp.com/server/159910/vote/'
  128. - '{DARK_AQUA}Vote 4 - {GOLD}http://minecraft-server-list.com/server/396829/vote/'
  129. - '{DARK_AQUA}Vote 5 - {GOLD}http://www.serverpact.com/vote-37661'
  130. - '{DARK_AQUA}Vote 6 - {GOLD}http://www.planetminecraft.com/server/rumble-craft-faction-server/vote/'
  131. - '{DARK_AQUA}To see our rewards type /rewards!'
  132. - '{DARK_AQUA}You can vote on each site every 24 hours!'
  133. - '{GRAY}---------------------------------------------------'
  134.  
  135. remindmessage:
  136. - '{WHITE}---------------------------------------------------'
  137. - '{GOLD}Remember to vote every day!'
  138. - '{GOLD}To see our rewards type /rewards!'
  139. - '{GOLD}You can vote on each site every 24 hours!'
  140. - '{WHITE}---------------------------------------------------'
  141.  
  142. joinmessage:
  143. - ''
  144.  
  145. # Additional formatting codes for below:
  146.  
  147. # {TOTAL} = vote total - used for /rewards
  148. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  149. # {POSITION} = current rank - used for /votetop
  150. # {username} = player name - used for /votetop
  151.  
  152. rewardformat: '{GRAY}[{DARK_AQUA}+{GRAY}] {DARK_AQUA}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  153. votetopformat: '{POSITION}. {GRAY}{username} - {WHITE}{TOTAL}'
  154. rewardheader:
  155. - '{DARK_AQUA}------------------ {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {DARK_AQUA}------------------'
  156. - '{GRAY}[{DARK_AQUA}+{GRAY}] {DARK_AQUA}Every vote you will receive'
  157. - '{GRAY}[{DARK_AQUA}+{GRAY}] {DARK_AQUA}5 Tnt'
  158. - '{GRAY}[{DARK_AQUA}+{GRAY}] {DARK_AQUA}5 Diamond'
  159. - '{GRAY}[{DARK_AQUA}+{GRAY}] {DARK_AQUA}$1000'
  160. - '{GRAY}[{DARK_AQUA}+{GRAY}] {DARK_AQUA}250 EXP'
  161. - '{GRAY}[{DARK_AQUA}+{GRAY}] {DARK_AQUA}2 mcMMO'
  162. - '{DARK_AQUA}---------------------------------------------'
  163. votetopheader:
  164. - '{DARK_AQUA}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {DARK_AQUA}----------------'
  165. rewardfooter:
  166. - '{DARK_AQUA}You currently have {GRAY}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement