Advertisement
Guest User

Untitled

a guest
Feb 5th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. #This represents the amount of seconds between each auto-save of the data.
  2. SaveLoop= @long:60
  3. #The messages to display when the /vote command is typed, each message appears on a new line.
  4. VoteCommand= [
  5. "&6Vote at http://www.evolvecraft.com/pages/vote/"
  6. ]
  7.  
  8. Voting= {
  9. Schemas= [
  10. "items",
  11. "commands",
  12. "announcements"
  13. ]
  14.  
  15. }
  16. OfflineVoting= {
  17. Enabled= false
  18. Schemas= [
  19. "items",
  20. "commands",
  21. "announcements"
  22. ]
  23.  
  24. }
  25. Counting= {
  26. Enabled= true
  27. Triggers= [
  28. {
  29. Count= @integer:100
  30. Type= "PLAYER_ONLINE"
  31. Schemas= [
  32. "items",
  33. "commands",
  34. "announcements"
  35. ]
  36.  
  37. }
  38. ]
  39.  
  40. }
  41. Schemas= {
  42. items= {
  43. Type= "ITEM"
  44. Chance= @double:99.0
  45. Items= [
  46. {
  47. Type= "pixelmon:item.Rare_Candy"
  48. Amount= @integer:2
  49. }
  50. ]
  51.  
  52. }
  53. announcements= {
  54. Type= "ANNOUNCE"
  55. Messages= [
  56. {
  57. Message= "&b%player% voted and received rewards!"
  58. Target= "GLOBAL"
  59. }
  60. ]
  61.  
  62. }
  63. commands= {
  64. Type= "COMMAND"
  65. Commands= [
  66. {
  67. Command= "cr keyspawn %player% Vote"
  68. Executor= "CONSOLE"
  69. },
  70. {
  71. Command= "adminpay %player% 25"
  72. Executor= "CONSOLE"
  73. }
  74. ]
  75.  
  76. }
  77. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement