Advertisement
Guest User

Untitled

a guest
May 9th, 2016
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 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. "Vote at example.com!",
  6. "Another line of text!",
  7. "&bColors are supported"
  8. ]
  9.  
  10. Voting= {
  11. Schemas= [
  12. "rarecandy",
  13. "money",
  14. "vote"
  15. ]
  16.  
  17. }
  18. OfflineVoting= {
  19. Enabled= true
  20. Schemas= [
  21. "rarecandy",
  22. "money",
  23. "vote"
  24. ]
  25.  
  26. }
  27. Counting= {
  28. Enabled= true
  29. Triggers= [
  30. {
  31. Count= 25
  32. Type= "PLAYER_ONLINE"
  33. Schemas= [
  34. "randomshiny"
  35. ]
  36.  
  37. },
  38. {
  39. Count= 50
  40. Type= "PLAYER_ONLINE"
  41. Schemas= [
  42. "randomshiny",
  43. "randomlegend"
  44. ]
  45.  
  46. },
  47. {
  48. Count= 75
  49. Type= "PLAYER_ONLINE"
  50. Schemas= [
  51. "randomshiny"
  52. ]
  53.  
  54. },
  55. {
  56. Count= 100
  57. Type= "PLAYER_ONLINE"
  58. Schemas= [
  59. "randomshiny",
  60. "randomlegend",
  61. "randomshinylegend",
  62. "resetvotes"
  63. ]
  64.  
  65. }
  66. ]
  67.  
  68. }
  69. Schemas= {
  70. vote= {
  71. Type= "ANNOUNCE"
  72. Messages= [
  73. {
  74. Message= "&aThank you for voting for our servers. Remember to vote daily to unlock vote milestones."
  75. Target= "PLAYER"
  76. }
  77. ]
  78.  
  79. }
  80. randomshiny= {
  81. Type= "COMMAND"
  82. Commands= [
  83. {
  84. Command= "pokerandom %player% s"
  85. Executor= "CONSOLE"
  86. }
  87. ]
  88.  
  89. }
  90. randomlegend= {
  91. Type= "COMMAND"
  92. Commands= [
  93. {
  94. Command= "legend %player%"
  95. Executor= "CONSOLE"
  96. }
  97. ]
  98.  
  99. }
  100. randomshinylegend= {
  101. Type= "COMMAND"
  102. Commands= [
  103. {
  104. Command= "legend %player% s"
  105. Executor= "CONSOLE"
  106. }
  107. ]
  108.  
  109. }
  110. resetvotes= {
  111. Type= "COMMAND"
  112. Commands= [
  113. {
  114. Command= "voteright count set %player% 0"
  115. Executor= "CONSOLE"
  116. }
  117. ]
  118.  
  119. }
  120. money= {
  121. Type= "COMMAND"
  122. Commands= [
  123. {
  124. Command= "eco add %player% 100"
  125. Executor= "CONSOLE"
  126. }
  127. ]
  128.  
  129. }
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement