Advertisement
Guest User

Untitled

a guest
Feb 8th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.41 KB | None | 0 0
  1. conds since the last vote for the same player on the same site. This should prevent duplicate votes.
  2. # logfile - Log received votes to vote.log file.
  3. # dbMode - Database mode. Use either mysql or sqlite.
  4. # dbFile - Database filename for SQLite.
  5. # dbHost - Database IP / Hostname for MySQL.
  6. # dbPort - Database port for MySQL.
  7. # dbUser - Database username for MySQL.
  8. # dbPass - Database password for MySQL.
  9. # dbName - Database name for MySQL.
  10. # dbPrefix - Database table prefix.
  11.  
  12. settings:
  13. onlineonly: true
  14. luckyvote: true
  15. permvote: true
  16. cumulative: true
  17. broadcastqueue: true
  18. broadcastrecent: true
  19. broadcastoffline: true
  20. votecommand: true
  21. rewardcommand: true
  22. joinmessage: true
  23. voteremind: false
  24. remindseconds: 900
  25. ratelimit: 10
  26. logfile: false
  27. dbMode: 'sqlite'
  28. dbFile: 'GAL.db'
  29. dbHost: 'localhost'
  30. dbPort: 3306
  31. dbUser: 'root'
  32. dbPass: ''
  33. dbName: 'GAL'
  34. dbPrefix: ''
  35.  
  36. # services section (default is used if service doesn't exist)
  37. # The example below would give 5 diamonds per vote.
  38.  
  39. services:
  40. default:
  41. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}2 Diamonds!'
  42. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  43. commands:
  44. - '/give {username} 264 2'
  45. MC-Index:
  46. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}MC-Index.com {GOLD}and received {GREEN}2 Diamonds!'
  47. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  48. commands:
  49. - '/give {username} 264 2'
  50.  
  51. # luckyvotes section
  52. # 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.
  53.  
  54. luckyvotes:
  55. '10':
  56. broadcast: '{GREEN}{username} {GOLD}was lucky and received an {GREEN}extra $1000!'
  57. playermessage: '{GREEN}You were lucky and received an extra $1000!'
  58. commands:
  59. - '/eco give {username} 1000'
  60. '50':
  61. broadcast: '{GREEN}{username} {GOLD}was super lucky and received an {GREEN}extra 100 XP and $1000!'
  62. playermessage: '{GREEN}You were super lucky and received an {GREEN}extra 100 XP and $1000!'
  63. commands:
  64. - '/xp give {username} 100'
  65. - '/eco give {username} 1000'
  66.  
  67. # permission reward section
  68. # This example would give players with the permission node "gal.double" 10 Diamonds instead of their regular reward.
  69.  
  70. perms:
  71. double:
  72. broadcast: '{GREEN}{username} {GOLD}has voted @ {GREEN}{service} {GOLD}and received {GREEN}10 Diamonds!'
  73. playermessage: '{GREEN}Thanks for voting at {AQUA}{service}!'
  74. commands:
  75. - '/give {username} 264 10'
  76.  
  77. # cumulative reward section
  78. # This example would give players 20 Diamonds once they have reached a total of 10 votes.
  79.  
  80. cumulative:
  81. '10':
  82. broadcast: '{GREEN}{username} {GOLD}has voted a total of {YELLOW}10 times {GOLD}and received {GREEN}20 Diamonds!'
  83. playermessage: '{GREEN}Thanks for voting {AQUA}10 times!'
  84. rewardmessage: '20x Diamond'
  85. commands:
  86. - '/give {username} 264 20'
  87.  
  88. # blocked - a list of worlds where rewards should be disabled, they will remain queued until the player is in an allowed world.
  89.  
  90. blocked:
  91. - world_blocked
  92.  
  93. # Available formatting codes for messages:
  94.  
  95. # {service} {servicename} {SERVICE} = service name
  96. # {username} {player} {name} = player username
  97. # {votes} = current vote total
  98. # & = Colour Symbol to enter manual colours / control codes
  99. # {AQUA} {BLACK} {BLUE} {DARK_AQUA} {DARK_BLUE}
  100. # {DARK_GRAY} {DARK_GREEN} {DARK_PURPLE} {DARK_RED} {GOLD}
  101. # {GRAY} {GREEN} {LIGHT_PURPLE} {RED} {WHITE} {YELLOW} {BOLD}
  102. # {ITALIC} {UNDERLINE} {STRIKETHROUGH} {STRIKE}
  103. # {STRIKETHROUGH} {MAGIC} {RESET}
  104.  
  105. votemessage:
  106. - 'Vote for us every day for in game rewards and extras'
  107. - 'Vote for diamonds'
  108. - '&6Link &a1:&4http://www.planetminecraft.com/server/aussie-lego/vote/'
  109. - '&6Link &a2:&4http://minecraftservers.org/vote/411987'
  110. - '&6Link &a3:&4http://minecraft-mp.com/server/146142/vote/'
  111. - '&6Link &a4:&4https://mc-servers.com/mcvote/1330/'
  112. - '{GOLD}-----------------------------------------------------'
  113. - 'Vote for us every day for in game rewards and extras'
  114. - '{GOLD}-----------------------------------------------------'
  115. - '{AQUA}You currently have {GREEN}{votes} Votes'
  116.  
  117. remindmessage:
  118. - '{GOLD}-----------------------------------------------------'
  119. - 'You have not voted recently, please vote to support the server'
  120. - '{GOLD}-----------------------------------------------------'
  121. - '{AQUA}You currently have {GREEN}{votes} Votes'
  122.  
  123. joinmessage:
  124. - '{GOLD}-----------------------------------------------------'
  125. - 'Vote for us every day for in game rewards and extras'
  126. - '{GOLD}-----------------------------------------------------'
  127. - '{AQUA}You currently have {GREEN}{votes} Votes'
  128.  
  129. # Additional formatting codes for below:
  130.  
  131. # {TOTAL} = vote total - used for /rewards
  132. # {REWARD} = current rewardmessage as specified in the cumulative reward section - used for /rewards
  133. # {POSITION} = current rank - used for /votetop
  134. # {username} = player name - used for /votetop
  135.  
  136. rewardformat: '{GREEN}{TOTAL} Votes {GRAY}- {AQUA}{REWARD}'
  137. votetopformat: '{POSITION}. {GREEN}{username} - {WHITE}{TOTAL}'
  138. rewardheader:
  139. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Rewards{WHITE} ] {GOLD}----------------'
  140. votetopheader:
  141. - '{GOLD}---------------- {WHITE}[ {DARK_AQUA}Top Voters{WHITE} ] {GOLD}----------------'
  142. rewardfooter:
  143. - '{AQUA}You currently have {GREEN}{votes} Votes'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement