Advertisement
Guest User

Untitled

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