Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2017
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. broadcasts {
  2. # Broadcasts how to buy tickets when someone bought one
  3. broadcastTicketPurchase=true
  4. # Broadcasts in set interval how much is in the pot; set to PT0M to disable
  5. timedBroadcastInterval=PT30M
  6. }
  7. # Format explanation: http://docs.oracle.com/javase/8/docs/api/java/time/Duration.html#parse-java.lang.CharSequence-
  8. drawInterval=PT2H
  9. drawMessage {
  10. arguments {}
  11. content="{extra=[{color=gold, text={player}}, {text= won the lottery pot of , color=gray}, {text={pot}, color=aqua}, {text=$!, color=gray}], text=}"
  12. options {
  13. closeArg="}"
  14. openArg="{"
  15. }
  16. }
  17. # Don't modify this!
  18. internalData {
  19. boughtTickets {}
  20. pot=0
  21. }
  22. # The max. amount of tickets a player can buy
  23. maxTickets=10
  24. # How much of the pot should be given to the winner
  25. payoutPercentage=90
  26. ticketCosts=750
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement