Advertisement
Guest User

Untitled

a guest
Aug 9th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. # Broadcasts how to buy tickets when someone bought one
  2. #
  3. broadcastTicketPurchase=true
  4. # Format explanation: http://docs.oracle.com/javase/8/docs/api/java/time/Duration.html#parse-java.lang.CharSequence-
  5. #
  6. #
  7. #
  8. #
  9. drawInterval=PT30M
  10. drawMessage {
  11. arguments {
  12. player {
  13. optional=false
  14. }
  15. pot {
  16. optional=false
  17. }
  18. }
  19. content {
  20. extra=[
  21. {
  22. color=gold
  23. text="{player}"
  24. },
  25. {
  26. color=gray
  27. text=" won the lottery pot of "
  28. },
  29. {
  30. color=aqua
  31. text="{pot}"
  32. },
  33. {
  34. color=gray
  35. text="$!"
  36. }
  37. ]
  38. text=""
  39. }
  40. options {
  41. closeArg="}"
  42. openArg="{"
  43. }
  44. }
  45. # Don't modify this!
  46. #
  47. #
  48. #
  49. #
  50. internalData {
  51. boughtTickets {
  52. "027b9e01-af35-46e2-897a-930d8e68ca84"=5
  53. "13f1cc5b-9335-4d14-a14e-0e1984528bb6"=3
  54. "33e5037b-e06a-4455-8603-cb1dc3e893a4"=1
  55. "41797ab3-f6e0-43e6-8341-be580dcbc5cc"=1
  56. "4abb6e81-d9a5-45cd-ad79-2aa9f509161a"=5
  57. a0327adf-814e-4865-8951-0eb54a225d80=1
  58. }
  59. pot=8000
  60. }
  61. # The max. amount of tickets a player can buy
  62. #
  63. #
  64. #
  65. #
  66. maxTickets=5
  67. # How much of the pot should be given to the winner
  68. #
  69. #
  70. #
  71. #
  72. payoutPercentage=70
  73. ticketCosts=500
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement