Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.14 KB | None | 0 0
  1. variables:
  2. {1.%player%} = false
  3. {2.%player%} = false
  4. {3.%player%} = false
  5. {4.%player%} = false
  6. {5.%player%} = false
  7. {6.%player%} = false
  8. {7.%player%} = false
  9. {8.%player%} = false
  10. {9.%player%} = false
  11. on first join:
  12. set {1.%player%} to true
  13.  
  14.  
  15.  
  16. command /lvl1:
  17. trigger:
  18. set {1.%player%} to true
  19. set {2.%player%} to false
  20. set {3.%player%} to false
  21. set {4.%player%} to false
  22. set {5.%player%} to false
  23. set {6.%player%} to false
  24. set {7.%player%} to false
  25. set {8.%player%} to false
  26. set {9.%player%} to false
  27.  
  28.  
  29. command /lvl2:
  30. trigger:
  31. set {2.%player%} to true
  32. set {1.%player%} to false
  33. set {3.%player%} to false
  34. set {4.%player%} to false
  35. set {5.%player%} to false
  36. set {6.%player%} to false
  37. set {7.%player%} to false
  38. set {8.%player%} to false
  39. set {9.%player%} to false
  40.  
  41. command /lvl3:
  42. trigger:
  43. set {3.%player%} to true
  44. set {2.%player%} to false
  45. set {1.%player%} to false
  46. set {4.%player%} to false
  47. set {5.%player%} to false
  48. set {6.%player%} to false
  49. set {7.%player%} to false
  50. set {8.%player%} to false
  51. set {9.%player%} to false
  52.  
  53. command /lvl4:
  54. trigger:
  55. set {4.%player%} to true
  56. set {2.%player%} to false
  57. set {3.%player%} to false
  58. set {1.%player%} to false
  59. set {5.%player%} to false
  60. set {6.%player%} to false
  61. set {7.%player%} to false
  62. set {8.%player%} to false
  63. set {9.%player%} to false
  64.  
  65. command /lvl5:
  66. trigger:
  67. set {5.%player%} to true
  68. set {2.%player%} to false
  69. set {3.%player%} to false
  70. set {4.%player%} to false
  71. set {1.%player%} to false
  72. set {6.%player%} to false
  73. set {7.%player%} to false
  74. set {8.%player%} to false
  75. set {9.%player%} to false
  76.  
  77. command /lvl6:
  78. trigger:
  79. set {6.%player%} to true
  80. set {2.%player%} to false
  81. set {3.%player%} to false
  82. set {4.%player%} to false
  83. set {5.%player%} to false
  84. set {1.%player%} to false
  85. set {7.%player%} to false
  86. set {8.%player%} to false
  87. set {9.%player%} to false
  88.  
  89. command /lvl7:
  90. trigger:
  91. set {7.%player%} to true
  92. set {2.%player%} to false
  93. set {3.%player%} to false
  94. set {4.%player%} to false
  95. set {5.%player%} to false
  96. set {6.%player%} to false
  97. set {1.%player%} to false
  98. set {8.%player%} to false
  99. set {9.%player%} to false
  100.  
  101. command /lvl8:
  102. trigger:
  103. set {8.%player%} to true
  104. set {2.%player%} to false
  105. set {3.%player%} to false
  106. set {4.%player%} to false
  107. set {5.%player%} to false
  108. set {6.%player%} to false
  109. set {7.%player%} to false
  110. set {1.%player%} to false
  111. set {9.%player%} to false
  112.  
  113. command /lvl9:
  114. trigger:
  115. set {9.%player%} to true
  116. set {2.%player%} to false
  117. set {3.%player%} to false
  118. set {4.%player%} to false
  119. set {5.%player%} to false
  120. set {6.%player%} to false
  121. set {7.%player%} to false
  122. set {8.%player%} to false
  123. set {1.%player%} to false
  124.  
  125.  
  126.  
  127. on mine of stone:
  128. cancel event
  129.  
  130. command /monety:
  131. trigger:
  132. send "&aMonety %{wykopanystone::%player%}%"
  133.  
  134. on mine of stone:
  135. if {1.%player%} is true:
  136. add 1 to {wykopanystone::%player%}
  137. send "&c+1"
  138. if {2.%player%} is true:
  139. add 2 to {wykopanystone::%player%}
  140. send "&c+2"
  141. if {3.%player%} is true:
  142. add 3 to {wykopanystone::%player%}
  143. send "&c+3"
  144. if {4.%player%} is true:
  145. add 4 to {wykopanystone::%player%}
  146. send "&c+4"
  147. if {5.%player%} is true:
  148. add 5 to {wykopanystone::%player%}
  149. send "&c+5"
  150. if {6.%player%} is true:
  151. add 6 to {wykopanystone::%player%}
  152. send "&c+6"
  153. if {7.%player%} is true:
  154. add 7 to {wykopanystone::%player%}
  155. send "&c+7"
  156. if {8.%player%} is true:
  157. add 8 to {wykopanystone::%player%}
  158. send "&c+8"
  159. if {9.%player%} is true:
  160. add 9 to {wykopanystone::%player%}
  161. send "&c+9"
  162.  
  163.  
  164.  
  165.  
  166.  
  167. command /staty:
  168. trigger:
  169. open chest with 6 rows named "&4&lStatystki" to player
  170. wait 4 tick
  171. format slot 0 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  172. format slot 1 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  173. format slot 2 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  174. format slot 3 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  175. format slot 4 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  176. format slot 5 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  177. format slot 6 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  178. format slot 7 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  179. format slot 8 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  180. format slot 9 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  181. format slot 10 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  182. format slot 11 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  183. format slot 12 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  184. format slot 14 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  185. format slot 15 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  186. format slot 16 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  187. format slot 17 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  188. format slot 18 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  189. format slot 19 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  190. format slot 20 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  191. format slot 21 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  192. format slot 23 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  193. format slot 24 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  194. format slot 25 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  195. format slot 26 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  196. format slot 27 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  197. format slot 28 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  198. format slot 29 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  199. format slot 33 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  200. format slot 34 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  201. format slot 35 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  202. format slot 36 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  203. format slot 37 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  204. format slot 38 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  205. format slot 39 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  206. format slot 41 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  207. format slot 42 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  208. format slot 43 of player with 1 of red glass named "&4&LStatystyki" to be unstealable
  209. format slot 44 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  210. format slot 45 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  211. format slot 46 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  212. format slot 47 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  213. format slot 48 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  214. format slot 49 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  215. format slot 50 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  216. format slot 51 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  217. format slot 52 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  218. format slot 53 of player with 1 of green glass named "&4&LStatystyki" to be unstealable
  219. format slot 30 of player with 1 of stone named "&4&lWykopanego kamienia" with lore "&4&lWykopales: %{wykopanystone::%player%}% kamienia!" to be unstealable
  220. format slot 13 of player with 1 of player head named "&4&lGraczy online:" with lore "&9&lObecnie jest %number of all players% graczy!" to be unstealable
  221.  
  222.  
  223.  
  224.  
  225. on walking on diamond block:
  226. add 1 diamond helmet of protection 4 and unbreaking 3 named "&eZestaw &aStartowy" to player
  227. add 1 diamond chestplate of protection 4 and unbreaking 3 named "&eZestaw &aStartowy" to player
  228. add 1 diamond leggings of protection 4 and unbreaking 3 named "&eZestaw &aStartowy" to player
  229. add 1 diamond boots of protection 4 and unbreaking 3 named "&eZestaw &aStartowy" to player
  230. add 1 diamond sword of sharpness 5 and fire aspect 2 named "&cZestaw Startowy" to player
  231. add 64 cobblestone to player
  232. send "&fDostales Zestaw Startowy"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement