Advertisement
Dreyer11

Untitled

Jun 30th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. variables:
  2.  
  3. {beacon.set} = false
  4.  
  5. {drop.status} = false
  6.  
  7.  
  8.  
  9. options:
  10.  
  11.  
  12.  
  13. prefix: &7[&a&lsuperclash&d&lpvp&7] #Du skriver bare lige det prefix du vil have for skriptet.
  14.  
  15.  
  16.  
  17. command /setdrop:
  18.  
  19. permission: set.drop #For at kunne sætte en beacon der dropper skal ham/hende have permission "set.drop"!
  20.  
  21. trigger:
  22.  
  23. if {beacon.set} is true:
  24.  
  25. send "{@prefix} &7Beacondrop er allerede sat."
  26.  
  27. if {beacon.set} is false:
  28.  
  29. set block above player to beacon
  30.  
  31. set {beacon.drop.sted} to location of player
  32.  
  33. loop all players:
  34.  
  35. if loop-player has permission "drop.admin":
  36.  
  37. send "{@prefix} &e&o%player% &7har sat en drop beacon &8(&a&o%location of {beacon.drop.sted}%&8) "
  38.  
  39.  
  40.  
  41. command /startdrop:
  42.  
  43. permission: drop.admin # Det er den permission de skal have hvis de skal kunne starte droppet
  44.  
  45. trigger:
  46.  
  47. if {drop.status} is true:
  48.  
  49. send "{@prefix} &cBeacondrop er allerede i gang"
  50.  
  51. if {drop.status} is false:
  52.  
  53. broadcast "{@prefix} &7Beacondrop starter om &e5 sekunder!"
  54.  
  55. wait 1 second
  56.  
  57. broadcast "{@prefix} &7Beacondrop starter om &e4 sekunder!"
  58.  
  59. wait 1 second
  60.  
  61. broadcast "{@prefix} &7Beacondrop starter om &e3 sekunder!"
  62.  
  63. wait 1 second
  64.  
  65. broadcast "{@prefix} &7Beacondrop starter om &e2 sekunder!"
  66.  
  67. wait 1 second
  68.  
  69. broadcast "{@prefix} &7Beacondrop starter om &e1 sekundt!"
  70.  
  71. wait 1 second
  72.  
  73. broadcast "{@prefix} &7Beacondrop er startet!"
  74.  
  75. set {drop.status} to true
  76.  
  77. drop 1 diamond at {beacon.drop.sted} # Du kan ændre diamond til den block du vil have skal droppes :)
  78.  
  79. wait 3 second
  80.  
  81. drop 1 diamond at {beacon.drop.sted}
  82.  
  83. wait 3 second
  84.  
  85. drop 1 diamond at {beacon.drop.sted}
  86.  
  87. wait 3 second
  88.  
  89. drop 1 diamond at {beacon.drop.sted}
  90.  
  91. wait 3 second
  92.  
  93. drop 1 diamond at {beacon.drop.sted}
  94.  
  95. wait 3 second
  96.  
  97. drop 1 diamond at {beacon.drop.sted}
  98.  
  99. wait 3 second
  100.  
  101. drop 1 diamond at {beacon.drop.sted}
  102.  
  103. wait 3 second
  104.  
  105. drop 1 diamond at {beacon.drop.sted}
  106.  
  107. wait 3 second
  108.  
  109. drop 1 diamond at {beacon.drop.sted}
  110.  
  111. wait 3 second
  112.  
  113. drop 1 diamond at {beacon.drop.sted}
  114.  
  115. wait 3 second
  116.  
  117. drop 1 diamond at {beacon.drop.sted}
  118.  
  119. wait 3 second
  120.  
  121. drop 1 diamond at {beacon.drop.sted}
  122.  
  123. wait 3 second
  124.  
  125. drop 1 diamond at {beacon.drop.sted}
  126.  
  127. wait 3 second
  128.  
  129. drop 1 diamond at {beacon.drop.sted}
  130.  
  131. wait 3 second
  132.  
  133. drop 1 diamond at {beacon.drop.sted}
  134.  
  135. wait 3 second
  136.  
  137. drop 1 diamond at {beacon.drop.sted}
  138.  
  139. wait 3 second
  140.  
  141. drop 1 diamond at {beacon.drop.sted}
  142.  
  143. wait 3 second
  144.  
  145. drop 1 diamond at {beacon.drop.sted}
  146.  
  147. wait 3 second
  148.  
  149. drop 1 diamond at {beacon.drop.sted}
  150.  
  151. wait 3 second
  152.  
  153. drop 1 diamond at {beacon.drop.sted}
  154.  
  155. wait 3 second
  156.  
  157. drop 1 diamond at {beacon.drop.sted}
  158.  
  159. wait 3 second
  160.  
  161. drop 1 diamond at {beacon.drop.sted}
  162.  
  163. wait 3 second
  164.  
  165. drop 1 diamond at {beacon.drop.sted}
  166.  
  167. wait 3 second
  168.  
  169. drop 1 diamond at {beacon.drop.sted}
  170.  
  171. wait 3 second
  172.  
  173. drop 1 diamond at {beacon.drop.sted}
  174.  
  175. wait 3 second
  176.  
  177.  
  178.  
  179. set {drop.status} to false
  180.  
  181. broadcast "{@prefix} &eBeacondrop er færdig!"
  182.  
  183.  
  184.  
  185. every 30 minutes:
  186.  
  187. execute console command "/startdrop"
  188.  
  189.  
  190.  
  191. on rightclick on beacon:
  192.  
  193. cancel event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement