Advertisement
Guest User

Untitled

a guest
Jul 11th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.13 KB | None | 0 0
  1. # settings section
  2.  
  3. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server!
  4. # luckyvote - Enables the lucky voting section, this allows voters to have a random chance to receive additional rewards when they vote.
  5. # permvote - Enables the permission voting section, this allows voters to receive different rewards based upon their permissions.
  6. # cumulative - Enables the cumulative voting section, this allows voters to receive rewards once they have reached a certain number of votes.
  7. # broadcastqueue - Show broadcast message for queued votes.
  8. # broadcastoffline - Show broadcast message for offline queued votes.
  9. # broadcastrecent - Show broadcast message to recent voters (last 24 hours)
  10. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config.
  11. # rewardcommand - Enables the /rewards command which will show a list of all the cumulative voting rewards.
  12. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server.
  13. # 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.
  14. # remindseconds - How often (in seconds) between each reminder message.
  15. # 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.
  16. # logfile - Log received votes to vote.log file.
  17. # dbMode - Database mode. Use either mysql or sqlite.
  18. # dbFile - Database filename for SQLite.
  19. # dbHost - Database IP / Hostname for MySQL.
  20. # dbPort - Database port for MySQL.
  21. # dbUser - Database username for MySQL.
  22. # dbPass - Database password for MySQL.
  23. # dbName - Database name for MySQL.
  24. # dbPrefix - Database table prefix.
  25.  
  26. settings:
  27. onlineonly: true
  28. luckyvote: true
  29. permvote: true
  30. cumulative: true
  31. broadcastqueue: true
  32. broadcastrecent: true
  33. broadcastoffline: false
  34. votecommand: true
  35. rewardcommand: false
  36. joinmessage: true
  37. voteremind: false
  38. remindseconds: 300
  39. ratelimit: 10
  40. logfile: false
  41. dbMode: 'sqlite'
  42. dbFile: 'GAL.db'
  43. dbHost: 'localhost'
  44. dbPort: 3306
  45. dbUser: 'root'
  46. dbPass: ''
  47. dbName: 'GAL'
  48. dbPrefix: ''
  49.  
  50. # services section (default is used if service doesn't exist)
  51. # The example below would give 5 diamonds per vote.
  52.  
  53. services:
  54. Minecraft-Server-List:
  55. broadcast: '{YELLOW}A{LIGHT_GREEN}F {YELLOW}{BOLD}>> {LIGHT_PURPLE}{username} {GREEN}has voted @ {LIGHT_PURPLE}{service} {GREEN}and received {AQUA}rewards{GREEN}!'
  56. playermessage: '{GREEN}Thanks for voting at {LIGHT_PURPLE}{service}{GREEN}!'
  57. commands:
  58. - '/case give {username} Thanks for voting! |'
  59. Minecraft-Server:
  60. broadcast: '{YELLOW}A{LIGHT_GREEN}F {YELLOW}{BOLD}>> {LIGHT_PURPLE}{username} {GREEN}has voted @ {LIGHT_PURPLE}{service} {GREEN}and received {AQUA}rewards{GREEN}!'
  61. playermessage: '{GREEN}Thanks for voting at {LIGHT_PURPLE}{service}{GREEN}!'
  62. commands:
  63. - '/case give {username} Thanks for voting! |'
  64.  
  65. # luckyvotes section
  66. # 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.
  67.  
  68. luckyvotes:
  69. '10':
  70. broadcast: '{YELLOW}A{LIGHT_GREEN}F {YELLOW}{BOLD}>> {LIGHT_PURPLE}{username} {GREEN}was lucky @ {LIGHT_PURPLE}{service} {GREEN}and received {AQUA}$1000{GREEN}!'
  71. playermessage: '{GREEN}You were lucky and received an extra ${GOLD}1000{GREEN}!'
  72. commands:
  73. - '/eco give {username} 1000'
  74. '50':
  75. broadcast: '{YELLOW}A{LIGHT_GREEN}F {YELLOW}{BOLD}>> {LIGHT_PURPLE}{username} {GREEN}was super lucky @ {LIGHT_PURPLE}{service} {GREEN}and received {AQUA}$2000 & 40 LEVELS{GREEN}!'
  76. playermessage: '{GREEN}You were lucky and received an extra ${GOLD}2000{AQUA}& 40 LEVELS{GREEN}!'
  77. commands:
  78. - '/xp give {username} 40L'
  79. - '/eco give {username} 2000'
  80.  
  81. # permission reward section
  82. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  83.  
  84. perms:
  85. double:
  86. broadcast: '{YELLOW}A{LIGHT_GREEN}F {YELLOW}{BOLD}>> {LIGHT_PURPLE}{username} {GREEN}has voted @ {LIGHT_PURPLE}{service} {GREEN}and received twice the{AQUA}rewards{GREEN}!'
  87. playermessage: '{GREEN}Thanks for voting at {LIGHT_PURPLE}{service}{GREEN} Doubler!'
  88. commands:
  89. - '/case give {username} Thanks for voting! |'
  90. - '/case give {username} Thanks for voting! |'
  91.  
  92. # cumulative reward section
  93. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  94.  
  95. cumulative:
  96. '6':
  97. broadcast: '{YELLOW}A{LIGHT_GREEN}F {YELLOW}{BOLD}>> {LIGHT_PURPLE}{username} {GREEN}has voted 10 times @ {YELLOW}MCAF {GREEN}and received twice the{AQUA}rewards{GREEN}!'
  98. playermessage: '{GREEN}Thanks for voting {LIGHT_PURPLE}10 {GREEN}times!'
  99. commands:
  100. - '/case give {username} Thanks for voting! |'
  101. - '/case give {username} uncommon'
  102.  
  103. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  104.  
  105. blocked:
  106. - world_blocked
  107.  
  108. # Available formatting codes for messages:
  109.  
  110. # {service} {servicename} {SERVICE} = service name
  111. # {username} {player} {name} = player username
  112. # {votes} = current vote total
  113. # & = Colour Symbol to enter manual colours / control codes
  114. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  115. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  116. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  117. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  118. # {STRIKETHROUGH} {MAGIC} {RESET}
  119.  
  120. votemessage:
  121. - '{GOLD}-----------------------------------------------------'
  122. - '{LIGHT_PURPLE}http://minecraft-server-list.com/server/356683/vote/'
  123. - ' {AQUA}------------------------+------------------------'
  124. - '{LIGHT_PURPLE}http://minecraft-server.net/index.php?a=in&u=AtomicFaction'
  125. - '{GOLD}-----------------------------------------------------'
  126. - '{AQUA}You currently have {LIGHT_PURPLE}{votes} {AQUA}Votes'
  127.  
  128. remindmessage:
  129. - '{GOLD}-----------------------------------------------------'
  130. - 'You have not voted recently, please vote to support the server'
  131. - '{GOLD}-----------------------------------------------------'
  132. - '{AQUA}You currently have {LIGHT_PURPLE}{votes} {AQUA}Votes'
  133.  
  134. joinmessage:
  135. - '{GOLD}-----------------------------------------------------'
  136. - 'Vote for us every day for in game rewards and extras'
  137. - '{GOLD}-----------------------------------------------------'
  138. - '{AQUA}You currently have {LIGHT_PURPLE}{votes} {AQUA}Votes'
  139.  
  140. # Additional formatting codes for below:
  141.  
  142. # {TOTAL} = vote total - used for /rewards
  143. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  144. # {POSITION} = current rank - used for /votetop
  145. # {username} = player name - used for /votetop
  146.  
  147. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  148. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  149. rewardheader:
  150. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  151. votetopheader:
  152. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  153. rewardfooter:
  154. - '{AQUA}You currently have {LIGHT_PURPLE}{votes} {AQUA}Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement