Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.92 KB | None | 0 0
  1. # VoteParty 1.4 configuration file
  2. # should VoteParty check if an update is available on startup
  3. check_updates: true
  4. party:
  5. # how many votes are needed for a party to start
  6. total_votes_needed_for_party: 30
  7. # what are the max possible rewards a player can get from a party
  8. max_possible_rewards_per_player: 150
  9. # how many seconds should we wait to start a party after the last vote is received
  10. start_delay_in_seconds: 10
  11. # should we give players rewards from a no_luck list if they haven't gotten lucky enough
  12. # to get rewards based on chance from a party
  13. use_no_luck_commands: false
  14. # should we allow players to get multiple of the same reward commands
  15. allow_duplicate_no_luck_commands: false
  16. # maximum no luck commands a player can get
  17. max_no_luck_commands: 1
  18. # list of commands to randomly choose if a player doesn't get regular rewards based on chance
  19. no_luck_commands:
  20. - eco give @p 100
  21. - give @p diamond 6
  22. - give @p iron_ingot 12
  23. reward_command_delay: 1
  24. reward_commands:
  25. - give @p emerald_block 64;4
  26. - give @p diamond_block 64;4
  27. - give @p emerald_block 64;4
  28. - give @p diamond_block 64;4
  29. - give @p emerald_block 64;4
  30. - give @p diamond_block 64;4
  31. - give @p emerald_block 64;4
  32. # should we execute commands before the party begins (as soon as the last vote is received)
  33. use_global_pre_party_start_commands: true
  34. # commands to execute
  35. global_pre_party_start_commands:
  36. - broadcast Party will start soon!
  37. # should we execute commands as soon as the party starts
  38. use_global_party_start_commands: false
  39. # commands to execute
  40. global_party_start_commands:
  41. - broadcast Party Starting!
  42. - save-all
  43. # you can add effects here which will be displayed at different times
  44. effects:
  45. on_vote:
  46. enabled: true
  47. effects:
  48. - flames
  49. - hearts
  50. on_party_start:
  51. enabled: true
  52. effects:
  53. - glyph
  54. - hearts
  55. on_party_command_execute:
  56. enabled: true
  57. effects:
  58. - smoke
  59. - hearts
  60. # crate options (would replace giving rewards instantly when a party starts
  61. # and give players a crate item which they can click to begin the personal party
  62. crate:
  63. use_crate: false
  64. material_or_id: 33
  65. data: 7
  66. displayname: '&b&lVote&f&lParty &7Crate''
  67. lore:
  68. - '&aPlace me &e:)'
  69. # messages to be modified to your liking :)
  70. messages:
  71. broadcast_vote_recieved: false
  72. vote_recieved: '&8&l[&b&lVote&f&lParty&8&l] &f%player% &ajust voted for the server
  73. at &f%service%&a! &f%votes% &amore votes needed until a VoteParty!'
  74. broadcast_party_start: true
  75. party_broadcast: '&8&l[&b&lVote&f&lParty&8&l] &bA &eVoteParty &bwill begin in &f&l%delay%
  76. seconds&b!'
  77. crate_added_to_inventory: '&8&l[&b&lVote&f&lParty&8&l] &bA reward crate has been
  78. added to your inventory!'
  79. no_reward: '&8&l[&b&lVote&f&lParty&8&l] &cAww you didn''t get any rewards this time!'
  80. did_not_vote: '&8&l[&b&lVote&f&lParty&8&l] &cYou didn''t vote to be able to participate
  81. in this VoteParty!'
  82. reward: '&8&l[&b&lVote&f&lParty&8&l] &bYour vote rewards have been applied!'
  83. commands:
  84. voteparty: '&8&l[&b&lVote&f&lParty&8&l] &bVotes needed for party: &f%votes%'
  85. give_crate: '&8&l[&b&lVote&f&lParty&8&l] &bYou just got %amount% VoteCrate(s)'
  86. private_party: '&8&l[&b&lVote&f&lParty&8&l] &eEnjoy your personal VoteParty!'
  87. ignore_toggle_on: '&8&l[&b&lVote&f&lParty&8&l] &7You will no longer participate
  88. in VoteParties!'
  89. ignore_toggle_off: '&8&l[&b&lVote&f&lParty&8&l] &aYou will now participate in
  90. VoteParties!'
  91. # options related to giving players rewards when they vote (simple vote reward listener)
  92. per_vote_rewards:
  93. enabled: false
  94. max_possible_rewards: 1
  95. reward_commands:
  96. - eco give @p 10;0
  97. - give @p steak 8;0
  98. # should we execute a command when a player votes
  99. on_vote_global_commands:
  100. enabled: true
  101. commands:
  102. - aa announce 1 &cOnly %votes% more votes until a VoteParty!
  103. # don't touch this option!
  104. save: 30
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement