Advertisement
Guest User

Aurions Config

a guest
Mar 18th, 2017
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. # AurionsVoteListener #
  2.  
  3. # http://www.mineaurion.com #
  4.  
  5. # settings section
  6.  
  7. # onlineonly - Only delivers rewards when the player is online. If they are offline it will wait and deliver when they next join the server"!" #
  8.  
  9. # broadcastoffline - Show broadcast message for offline queued votes. #
  10.  
  11. # votecommand - Enables the /vote command which will show the message contained in the votemessage section at the bottom of the config. #
  12.  
  13. # joinmessage - Show the message contained in the joinmessage section at the bottom of this config when a player joins the server. #
  14.  
  15. # votetopnumber - Number of players to display for the topvote #
  16.  
  17. # AddExtraRandom: true (give extra random reward) Depending on the chance
  18.  
  19. # GiveChanceReward: Gives all rewards of lower numbers
  20.  
  21. # dbMode - Use "MySQL" or "File" #
  22.  
  23. # dbFile - name of the database file (don't forget the .db) #
  24.  
  25. # setup MySQL #
  26.  
  27. # dbHost - Database IP / Hostname for MySQL. #
  28.  
  29. # dbPort - Database port for MySQL. #
  30.  
  31. # dbUser - Database username for MySQL. #
  32.  
  33. # dbPass - Database password for MySQL. #
  34.  
  35. # dbName - Database name for MySQL. #
  36.  
  37. # dbPrefix - Database table prefix. #
  38.  
  39. # AnnouncementDelay - Delay in second to repeat the message #
  40.  
  41. settings {
  42.  
  43. onlineonly=true
  44.  
  45. broadcastoffline=false
  46.  
  47. votecommand=true
  48.  
  49. joinmessage=true
  50.  
  51. votetopnumber=10
  52.  
  53. AddExtraReward=false
  54.  
  55. GiveChanceReward=true
  56.  
  57. dbMode="File"
  58.  
  59. dbFile="SQL.db"
  60.  
  61. dbHost=""
  62.  
  63. dbPort=3306
  64.  
  65. dbUser="root"
  66.  
  67. dbPass=""
  68.  
  69. dbName="Listener"
  70.  
  71. dbPrefix=""
  72.  
  73. dbTableTotal="ListenerTotal"
  74.  
  75. dbTableQueue="ListenerQueue"
  76.  
  77. AnnouncementDelay=300
  78.  
  79.  
  80.  
  81. }
  82.  
  83.  
  84.  
  85. # services section (DEFAULT is used if service doesn't exist) #
  86.  
  87. # The example below would give 5 diamonds per vote. #
  88.  
  89. # Never remove DEFAULT #
  90.  
  91. services {
  92.  
  93. DEFAULT{
  94.  
  95. broadcast="<GREEN><username> <GOLD>has voted @ <GREEN><service> <GOLD>and received <GREEN>5 Diamonds !"
  96.  
  97. playermessage="<GREEN>Thanks for voting at <AQUA><service> !"
  98.  
  99. commands=[
  100.  
  101. "give <username> pixelmon:poke_ball 2",
  102. "give <username> pixelmon:rare_candy 1",
  103. "econ add <username> 100",
  104. "crate votecrate key <username>"
  105.  
  106. ]
  107.  
  108. }
  109.  
  110.  
  111.  
  112. MC-Index{
  113.  
  114. broadcast="<GREEN><username> <GOLD>has voted @ <GREEN> MC-Index <GOLD>and received <GREEN>5 Diamonds !"
  115.  
  116. playermessage="<GREEN>Thanks for voting at <AQUA><service> !"
  117.  
  118. commands=[
  119.  
  120. "give <username> book 5"
  121.  
  122. ]
  123.  
  124. }
  125.  
  126. }
  127.  
  128.  
  129.  
  130. # The example below would give a 30% chance of a voter receiving an extra 5 book, and a 10% chance of an extra 5 book and 5 ghast tear.
  131.  
  132. ExtraReward{
  133.  
  134. 30{
  135.  
  136. broadcast="<GREEN><username> <GOLD>was super lucky and received an <GREEN>extra 5 Poke Balls"
  137.  
  138. playermessage="<GREEN>You were super lucky and received an <GREEN> extra 5 Poke Balls "
  139.  
  140. commands=[
  141.  
  142. "give <username> pixelmon:poke_ball 5"
  143.  
  144. ]
  145.  
  146. }
  147.  
  148. 10{
  149.  
  150. broadcast="<GREEN><username> <GOLD>was super lucky and received an <GREEN>extra 5 Rare Candies"
  151.  
  152. playermessage="<GREEN>You were lucky and received an extra 5 Rare Candies"
  153.  
  154. commands=[
  155.  
  156. "give <username> pixelmon:rare_candy 5"
  157.  
  158. ]
  159.  
  160. }
  161.  
  162. }
  163.  
  164.  
  165.  
  166.  
  167.  
  168. # Available formatting codes for messages: #
  169.  
  170. # <service> = service name #
  171.  
  172. # <username>= player username #
  173.  
  174. # <votes> = current vote total #
  175.  
  176. # & = Colour Symbol to enter manual colours / control codes #
  177.  
  178. # <AQUA> <BLACK> <BLUE> <DARK_AQUA> <DARK_BLUE> #
  179.  
  180. # <DARK_GRAY> <DARK_GREEN> <DARK_PURPLE> <DARK_RED> <GOLD> #
  181.  
  182. # <GRAY> <GREEN> <LIGHT_PURPLE> <RED> <WHITE> <YELLOW> <BOLD> #
  183.  
  184. # <ITALIC> <UNDERLINE> <STRIKETHROUGH> <STRIKE> #
  185.  
  186. # <STRIKETHROUGH> <MAGIC> <RESET> #
  187.  
  188. votemessage=[
  189.  
  190. "<GOLD>-----------------------------------------------------",
  191.  
  192. "Vote for us every day for in game rewards and extras",
  193.  
  194. "<GOLD>-----------------------------------------------------",
  195.  
  196. "<AQUA>You currently have <GREEN><votes> Votes"
  197.  
  198. ]
  199.  
  200.  
  201.  
  202. joinmessage=[
  203.  
  204. "<GOLD>-----------------------------------------------------",
  205.  
  206. "Vote for us every day for in game rewards and extras",
  207.  
  208. "<GOLD>-----------------------------------------------------",
  209.  
  210. "<AQUA>You currently have <GREEN><votes> Votes"
  211.  
  212. ]
  213.  
  214.  
  215.  
  216. Announcement=[
  217.  
  218. "<GOLD>-----------------------------------------------------",
  219.  
  220. "Vote for us every day for in game rewards and extras",
  221.  
  222. "<GOLD>-----------------------------------------------------"
  223.  
  224. ]
  225.  
  226.  
  227.  
  228. # Additional formatting codes for below: #
  229.  
  230. # <TOTAL> = vote total - used for /rewards #
  231.  
  232. # <POSITION> = current rank - used for /votetop #
  233.  
  234. # <username> = player name - used for /votetop #
  235.  
  236. votetopformat="<POSITION>. <GREEN><username> - <WHITE><TOTAL>"
  237.  
  238.  
  239.  
  240. votetopheader=[
  241.  
  242. "<GOLD>---------------- <WHITE>( <DARK_AQUA>Top Voters<WHITE> ) <GOLD>----------------"
  243.  
  244. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement