Advertisement
Guest User

Untitled

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