QsQ

xDrop

QsQ
Jan 23rd, 2014
567
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 45.29 KB | None | 0 0
  1. variables:
  2. {drop.%player%.punkty} = 0
  3. {drop.%player%.lvl} = 1
  4. {diamond.%player%} = 0
  5. {emerald.%player%} = 0
  6. {zelazo.%player%} = 0
  7. {zloto.%player%} = 0
  8. {lapis.%player%} = 0
  9. {redstone.%player%} = 0
  10. {wegiel.%player%} = 0
  11. {kamien.%player%} = 0
  12. #===========================================================================================================
  13. #Opcie
  14. #===========================================================================================================
  15. options:
  16. heightdiax: 30
  17. procentdiax: 0.8
  18. heightemerald: 45
  19. procentemerald: 0.9
  20. heightzloto: 50
  21. procentzloto: 1.3
  22. procentzelazo: 2.1
  23. heightredstone: 25
  24. procentredstone: 1.0
  25. heightwegiel: 200
  26. procentwegiel: 1.2
  27. heightlapis: 25
  28. procentlapis: 0.7
  29. # D R O P V I P A #
  30. on break of stone:
  31. player has permissions "drop.vip":
  32. chance of {@procentdiax} + 0.3%:
  33. if block's y-coordinate is smaller than {@heightdiax}:
  34. drop diamond
  35. add 1 to {diamond.%player%}
  36. add 3 to {drop.%player%.punkty}
  37. message "&6Trafiles na: &bDiament &7+3 pkt"
  38. execute console command "/playsound random.successful_hit %player%"
  39. chance of {@procentzloto} + 0.3%:
  40. if block's y-coordinate is smaller than {@heightzloto}:
  41. drop gold ingot
  42. add 1 to {drop.%player%.punkty}
  43. add 1 to {zloto.%player%}
  44. message "&6Trafiles na: &eZloto &7+1 pkt"
  45. execute console command "/playsound random.successful_hit %player%"
  46. chance of {@procentzelazo} + 0.3%:
  47. drop iron ingot
  48. add 1 to {drop.%player%.punkty}
  49. add 1 to {zelazo.%player%}
  50. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  51. execute console command "/playsound random.successful_hit %player%"
  52. chance of {@procentemerald} + 0.3%:
  53. if block's y-coordinate is smaller than {@heightemerald}:
  54. drop emerald
  55. add 2 to {drop.%player%.punkty}
  56. add 1 to {emerald.%player%}
  57. message "&6Trafiles na: &2Emerald &7+2 pkt"
  58. execute console command "/playsound random.successful_hit %player%"
  59. chance of {@procentredstone} + 0.3%:
  60. if block's y-coordinate is smaller than {@heightredstone}:
  61. drop 3 redstone
  62. add 2 to {drop.%player%.punkty}
  63. add 3 to {redstone.%player%}
  64. message "&6Trafiles na: &cRedstone [3] &7+2 pkt"
  65. execute console command "/playsound random.successful_hit %player%"
  66. chance of {@procentwegiel} + 0.3%:
  67. if block's y-coordinate is smaller than {@heightwegiel}:
  68. drop 1 coal
  69. add 1 to {drop.%player%.punkty}
  70. add 1 to {wegiel.%player%}
  71. message "&6Trafiles na: &0Wegiel &7+1 pkt"
  72. execute console command "/playsound random.successful_hit %player%"
  73. chance of {@procentlapis} + 0.3%:
  74. if block's y-coordinate is smaller than {@heightlapis}:
  75. drop 5 351:4
  76. add 2 to {drop.%player%.punkty}
  77. add 5 to {lapis.%player%}
  78. message "&6Trafiles na: &3Lapis [5] &7+2 pkt"
  79. execute console command "/playsound random.successful_hit %player%"
  80. player has permissions "drop.vip":
  81. if player's tool is a diamond pickaxe of fortune 1:
  82. chance of {@procentdiax} + 0.3%:
  83. if block's y-coordinate is smaller than {@heightdiax}:
  84. chance of 50%:
  85. drop 2 diamond
  86. add 2 to {diamond.%player%}
  87. add 4 to {drop.%player%.punkty}
  88. message "&6Trafiles na: &bDiamenty [2] &7+4 pkt"
  89. execute console command "/playsound random.successful_hit %player%"
  90. else:
  91. add 3 to {drop.%player%.punkty}
  92. add 3 to {diamond.%player%}
  93. message "&6Trafiles na: &bDiament &7+2 pkt"
  94. drop diamond
  95. execute console command "/playsound random.successful_hit %player%"
  96. chance of {@procentzloto} + 0.3%:
  97. if block's y-coordinate is smaller than {@heightzloto}:
  98. chance of 50%:
  99. drop 2 gold ingot
  100. add 2 to {zloto.%player%}
  101. add 2 to {drop.%player%.punkty}
  102. message "&6Trafiles na: &eZloto [2] &7+2 pkt"
  103. execute console command "/playsound random.successful_hit %player%"
  104. else:
  105. drop gold ingot
  106. add 1 to {zloto.%player%}
  107. add 1 to {drop.%player%.punkty}
  108. message "&6Trafiles na: &eZloto &7+2 pkt"
  109. execute console command "/playsound random.successful_hit %player%"
  110. chance of {@procentzelazo} + 0.3%:
  111. chance of 50%:
  112. drop 2 iron ingot
  113. add 2 to {zelazo.%player%}
  114. add 2 to {drop.%player%.punkty}
  115. message "&6Trafiles na: &8Zelazo [2] &7+2 pkt"
  116. execute console command "/playsound random.successful_hit %player%"
  117. else:
  118. drop iron ingot
  119. add 1 to {zelazo.%player%}
  120. add 1 to {drop.%player%.punkty}
  121. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  122. execute console command "/playsound random.successful_hit %player%"
  123. chance of {@procentemerald} + 0.3%:
  124. if block's y-coordinate is smaller than {@heightemerald}:
  125. chance of 50%:
  126. drop 2 emerald
  127. add 2 to {emerald.%player%}
  128. add 3 to {drop.%player%.punkty}
  129. message "&6Trafiles na: &2Emeraldy [2] &7+3 pkt"
  130. execute console command "/playsound random.successful_hit %player%"
  131. else:
  132. drop emerald
  133. add 1 to {emerald.%player%}
  134. add 2 to {drop.%player%.punkty}
  135. message "&6Trafiles na: &2Emerald &7+2 pkt"
  136. execute console command "/playsound random.successful_hit %player%"
  137. player has permissions "drop.vip":
  138. if tool of player is a 278 of fortune 2:
  139. chance of {@procentdiax} + 0.3%:
  140. if block's y-coordinate is smaller than {@heightdiax}:
  141. chance of 33%:
  142. drop 3 diamond
  143. add 3 to {diamond.%player%}
  144. add 5 to {drop.%player%.punkty}
  145. message "&6Trafiles na: &bDiamenty [3] &7+5 pkt"
  146. execute console command "/playsound random.successful_hit %player%"
  147. else:
  148. chance of 33%:
  149. message "&6Trafiles na: &bDiamenty [2] &7+4 pkt"
  150. add 4 to {drop.%player%.punkty}
  151. add 2 to {diamond.%player%}
  152. drop 2 diamond
  153. execute console command "/playsound random.successful_hit %player%"
  154. else:
  155. chance of 33%:
  156. message "&6Trafiles na: &bDiament &7+3 pkt"
  157. add 3 to {drop.%player%.punkty}
  158. add 1 to {diamond.%player%}
  159. drop diamond
  160. execute console command "/playsound random.successful_hit %player%"
  161. chance of {@procentzloto} + 0.3%:
  162. if block's y-coordinate is smaller than {@heightzloto}:
  163. chance of 33%:
  164. drop 3 gold ingot
  165. add 3 to {drop.%player%.punkty}
  166. add 3 to {zloto.%player%}
  167. message "&6Trafiles na: &6Zloto [3] &7+3 pkt"
  168. execute console command "/playsound random.successful_hit %player%"
  169. else:
  170. chance of 33%:
  171. drop 2 gold ingot
  172. add 2 to {drop.%player%.punkty}
  173. add 2 to {zloto.%player%}
  174. message "&6Trafiles na: &6Zloto [2] &7+2 pkt"
  175. execute console command "/playsound random.successful_hit %player%"
  176. else:
  177. chance of 33%:
  178. message "&6Trafiles na: &6Zloto &7+1 pkt"
  179. add 1 to {drop.%player%.punkty}
  180. add 1 to {zloto.%player%}
  181. drop gold ingot
  182. execute console command "/playsound random.successful_hit %player%"
  183. chance of {@procentzelazo} + 0.3%:
  184. chance of 33%:
  185. message "&6Trafiles na: &8Zelazo [3] &7+3 pkt"
  186. add 3 to {drop.%player%.punkty}
  187. drop 3 iron ingot
  188. add 3 to {zelazo.%player%}
  189. execute console command "/playsound random.successful_hit %player%"
  190. else:
  191. chance of 33%:
  192. drop 2 iron ingot
  193. add 2 to {drop.%player%.punkty}
  194. add 2 to {zelazo.%player%}
  195. message "&6Trafiles na: &8Zelazo [2] &7+2 pkt"
  196. execute console command "/playsound random.successful_hit %player%"
  197. else:
  198. chance of 33%:
  199. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  200. drop iron ingot
  201. add 1 to {zelazo.%player%}
  202. add 1 to {drop.%player%.punkty}
  203. execute console command "/playsound random.successful_hit %player%"
  204. chance of {@procentemerald} + 0.3%:
  205. if block's y-coordinate is smaller than {@heightemerald}:
  206. chance of 33%:
  207. drop 3 emerald
  208. add 4 to {drop.%player%.punkty}
  209. add 3 to {emerald.%player%}
  210. message "&6Trafiles na: &2Emerald [3] &7+4 pkt"
  211. execute console command "/playsound random.successful_hit %player%"
  212. else:
  213. chance of 33%:
  214. message "&6Trafiles na: &2Emerald [2] &7+3 pkt"
  215. drop 2 emerald
  216. add 2 to {emerald.%player%}
  217. add 3 to {drop.%player%.punkty}
  218. execute console command "/playsound random.successful_hit %player%"
  219. else:
  220. chance of 33%:
  221. message "&6Trafiles na: &2Emerald &7+2 pkt"
  222. drop emerald
  223. add 2 to {drop.%player%.punkty}
  224. add 1 to {emerald.%player%}
  225. execute console command "/playsound random.successful_hit %player%"
  226. player has permissions "drop.vip":
  227. if tool of player is a 278 of fortune 3:
  228. chance of {@procentdiax} + 0.3%:
  229. if block's y-coordinate is smaller than {@heightdiax}:
  230. chance of 25%:
  231. message "&6Trafiles na: &2Diamenty [4] &7+6 pkt"
  232. add 6 to {drop.%player%.punkty}
  233. drop 4 diamond
  234. add 4 to {diamond.%player%}
  235. execute console command "/playsound random.successful_hit %player%"
  236. else:
  237. chance of 25%:
  238. message "&6Trafiles na: &2Diamenty [3] &7+5 pkt"
  239. add 5 to {drop.%player%.punkty}
  240. drop 3 diamond
  241. add 3 to {diamond.%player%}
  242. execute console command "/playsound random.successful_hit %player%"
  243. else:
  244. chance of 25%:
  245. message "&6Trafiles na: &2Diamenty [2] &7+4 pkt"
  246. add 4 to {drop.%player%.punkty}
  247. drop 2 diamond
  248. add 2 to {diamond.%player%}
  249. execute console command "/playsound random.successful_hit %player%"
  250. else:
  251. chance of 25%:
  252. message "&6Trafiles na: &2Diamenty &7+3 pkt"
  253. add 3 to {drop.%player%.punkty}
  254. add 1 to {diamond.%player%}
  255. drop diamond
  256. execute console command "/playsound random.successful_hit %player%"
  257. chance of {@procentzloto} + 0.3%:
  258. if block's y-coordinate is smaller than {@heightzloto}:
  259. chance of 25%:
  260. drop 4 gold ingot
  261. add 4 to {drop.%player%.punkty}
  262. add 4 to {zloto.%player%}
  263. message "&6Trafiles na: &eZloto [4] &7+4 pkt"
  264. execute console command "/playsound random.successful_hit %player%"
  265. else:
  266. chance of 25%:
  267. drop 3 gold ingot
  268. add 3 to {drop.%player%.punkty}
  269. add 3 to {zloto.%player%}
  270. message "&6Trafiles na: &eZloto [3] &7+3 pkt"
  271. execute console command "/playsound random.successful_hit %player%"
  272. else:
  273. chance of 25%:
  274. drop 2 gold ingot
  275. add 2 to {drop.%player%.punkty}
  276. add 2 to {zloto.%player%}
  277. message "&6Trafiles na: &eZloto [2] &7+2 pkt"
  278. execute console command "/playsound random.successful_hit %player%"
  279. else:
  280. chance of 25%:
  281. drop gold ingot
  282. add 1 to {drop.%player%.punkty}
  283. add 1 to {zloto.%player%}
  284. message "&6Trafiles na: &eZloto &7+1 pkt"
  285. execute console command "/playsound random.successful_hit %player%"
  286. chance of {@procentzelazo} + 0.3%:
  287. chance of 25%:
  288. drop 4 iron ingot
  289. add 4 to {drop.%player%.punkty}
  290. add 4 to {zelazo.%player%}
  291. message "&6Trafiles na: &8Zelazo [4] &7+4 pkt"
  292. execute console command "/playsound random.successful_hit %player%"
  293. else:
  294. chance of 25%:
  295. drop 3 iron ingot
  296. add 3 to {drop.%player%.punkty}
  297. add 3 to {zloto.%player%}
  298. message "&6Trafiles na: &8Zelazo [3] &7+3 pkt"
  299. execute console command "/playsound random.successful_hit %player%"
  300. else:
  301. chance of 25%:
  302. drop 2 iron ingot
  303. add 2 to {drop.%player%.punkty}
  304. add 2 to {zloto.%player%}
  305. message "&6Trafiles na: &8Zelazo [2] &7+2 pkt"
  306. execute console command "/playsound random.successful_hit %player%"
  307. else:
  308. chance of 25%:
  309. drop iron ingot
  310. add 2 to {drop.%player%.punkty}
  311. add 1 to {zloto.%player%}
  312. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  313. execute console command "/playsound random.successful_hit %player%"
  314. chance of {@procentemerald} + 0.3%:
  315. if block's y-coordinate is smaller than {@heightemerald}:
  316. chance of 25%:
  317. drop 4 emerald
  318. add 5 to {drop.%player%.punkty}
  319. add 4 to {emerald.%player%}
  320. message "&6Trafiles na: &2Emerald [4] &7+5 pkt"
  321. execute console command "/playsound random.successful_hit %player%"
  322. else:
  323. chance of 25%:
  324. drop 3 emerald
  325. add 4 to {drop.%player%.punkty}
  326. add 3 to {emerald.%player%}
  327. message "&6Trafiles na: &2Emerald [3] &7+4 pkt"
  328. execute console command "/playsound random.successful_hit %player%"
  329. else:
  330. chance of 25%:
  331. drop 2 emerald
  332. add 3 to {drop.%player%.punkty}
  333. add 2 to {emerald.%player%}
  334. message "&6Trafiles na: &2Emeraldy [2] &7+3 pkt"
  335. execute console command "/playsound random.successful_hit %player%"
  336. else:
  337. chance of 25%:
  338. drop emerald
  339. add 2 to {drop.%player%.punkty}
  340. add 1 to {emerald.%player%}
  341. message "&6Trafiles na: &2Emeraldy &7+2 pkt"
  342. execute console command "/playsound random.successful_hit %player%"
  343.  
  344.  
  345.  
  346. # D R O P G R A C Z A
  347. player has permissions "drop.gracz":
  348. chance of {@procentdiax}%:
  349. if block's y-coordinate is smaller than {@heightdiax}:
  350. drop diamond
  351. add 1 to {diamond.%player%}
  352. add 3 to {drop.%player%.punkty}
  353. message "&6Trafiles na: &bDiament &7+3 pkt"
  354. execute console command "/playsound random.successful_hit %player%"
  355. chance of {@procentzloto}%:
  356. if block's y-coordinate is smaller than {@heightzloto}:
  357. drop gold ingot
  358. add 1 to {drop.%player%.punkty}
  359. add 1 to {zloto.%player%}
  360. message "&6Trafiles na: &eZloto &7+1 pkt"
  361. execute console command "/playsound random.successful_hit %player%"
  362. chance of {@procentzelazo}%:
  363. drop iron ingot
  364. add 1 to {drop.%player%.punkty}
  365. add 1 to {zelazo.%player%}
  366. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  367. execute console command "/playsound random.successful_hit %player%"
  368. chance of {@procentemerald}%:
  369. if block's y-coordinate is smaller than {@heightemerald}:
  370. drop emerald
  371. add 2 to {drop.%player%.punkty}
  372. add 1 to {emerald.%player%}
  373. message "&6Trafiles na: &2Emerald &7+2 pkt"
  374. execute console command "/playsound random.successful_hit %player%"
  375. chance of {@procentredstone}%:
  376. if block's y-coordinate is smaller than {@heightredstone}:
  377. drop 3 redstone
  378. add 2 to {drop.%player%.punkty}
  379. add 3 to {redstone.%player%}
  380. message "&6Trafiles na: &cRedstone [3] &7+2 pkt"
  381. execute console command "/playsound random.successful_hit %player%"
  382. chance of {@procentwegiel}%:
  383. if block's y-coordinate is smaller than {@heightwegiel}:
  384. drop 1 coal
  385. add 1 to {drop.%player%.punkty}
  386. add 1 to {wegiel.%player%}
  387. message "&6Trafiles na: &0Wegiel &7+1 pkt"
  388. execute console command "/playsound random.successful_hit %player%"
  389. chance of {@procentlapis}%:
  390. if block's y-coordinate is smaller than {@heightlapis}:
  391. drop 5 351:4
  392. add 2 to {drop.%player%.punkty}
  393. add 5 to {lapis.%player%}
  394. message "&6Trafiles na: &3Lapis [5] &7+2 pkt"
  395. execute console command "/playsound random.successful_hit %player%"
  396. player has permissions "drop.gracz":
  397. if player's tool is a diamond pickaxe of fortune 1:
  398. chance of {@procentdiax}%:
  399. if block's y-coordinate is smaller than {@heightdiax}:
  400. chance of 50%:
  401. drop 2 diamond
  402. add 2 to {diamond.%player%}
  403. add 4 to {drop.%player%.punkty}
  404. message "&6Trafiles na: &bDiamenty [2] &7+4 pkt"
  405. execute console command "/playsound random.successful_hit %player%"
  406. else:
  407. add 3 to {drop.%player%.punkty}
  408. add 3 to {diamond.%player%}
  409. message "&6Trafiles na: &bDiament &7+2 pkt"
  410. drop diamond
  411. execute console command "/playsound random.successful_hit %player%"
  412. chance of {@procentzloto}%:
  413. if block's y-coordinate is smaller than {@heightzloto}:
  414. chance of 50%:
  415. drop 2 gold ingot
  416. add 2 to {zloto.%player%}
  417. add 2 to {drop.%player%.punkty}
  418. message "&6Trafiles na: &eZloto [2] &7+2 pkt"
  419. execute console command "/playsound random.successful_hit %player%"
  420. else:
  421. drop gold ingot
  422. add 1 to {zloto.%player%}
  423. add 1 to {drop.%player%.punkty}
  424. message "&6Trafiles na: &eZloto &7+2 pkt"
  425. execute console command "/playsound random.successful_hit %player%"
  426. chance of {@procentzelazo}%:
  427. chance of 50%:
  428. drop 2 iron ingot
  429. add 2 to {zelazo.%player%}
  430. add 2 to {drop.%player%.punkty}
  431. message "&6Trafiles na: &8Zelazo [2] &7+2 pkt"
  432. execute console command "/playsound random.successful_hit %player%"
  433. else:
  434. drop iron ingot
  435. add 1 to {zelazo.%player%}
  436. add 1 to {drop.%player%.punkty}
  437. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  438. execute console command "/playsound random.successful_hit %player%"
  439. chance of {@procentemerald}%:
  440. if block's y-coordinate is smaller than {@heightemerald}:
  441. chance of 50%:
  442. drop 2 emerald
  443. add 2 to {emerald.%player%}
  444. add 3 to {drop.%player%.punkty}
  445. message "&6Trafiles na: &2Emeraldy [2] &7+3 pkt"
  446. execute console command "/playsound random.successful_hit %player%"
  447. else:
  448. drop emerald
  449. add 1 to {emerald.%player%}
  450. add 2 to {drop.%player%.punkty}
  451. message "&6Trafiles na: &2Emerald &7+2 pkt"
  452. execute console command "/playsound random.successful_hit %player%"
  453. player has permissions "drop.gracz":
  454. if tool of player is a 278 of fortune 2:
  455. chance of {@procentdiax}%:
  456. if block's y-coordinate is smaller than {@heightdiax}:
  457. chance of 33%:
  458. drop 3 diamond
  459. add 3 to {diamond.%player%}
  460. add 5 to {drop.%player%.punkty}
  461. message "&6Trafiles na: &bDiamenty [3] &7+5 pkt"
  462. execute console command "/playsound random.successful_hit %player%"
  463. else:
  464. chance of 33%:
  465. message "&6Trafiles na: &bDiamenty [2] &7+4 pkt"
  466. add 4 to {drop.%player%.punkty}
  467. add 2 to {diamond.%player%}
  468. drop 2 diamond
  469. execute console command "/playsound random.successful_hit %player%"
  470. else:
  471. chance of 33%:
  472. message "&6Trafiles na: &bDiament &7+3 pkt"
  473. add 3 to {drop.%player%.punkty}
  474. add 1 to {diamond.%player%}
  475. drop diamond
  476. execute console command "/playsound random.successful_hit %player%"
  477. chance of {@procentzloto}%:
  478. if block's y-coordinate is smaller than {@heightzloto}:
  479. chance of 33%:
  480. drop 3 gold ingot
  481. add 3 to {drop.%player%.punkty}
  482. add 3 to {zloto.%player%}
  483. message "&6Trafiles na: &6Zloto [3] &7+3 pkt"
  484. execute console command "/playsound random.successful_hit %player%"
  485. else:
  486. chance of 33%:
  487. drop 2 gold ingot
  488. add 2 to {drop.%player%.punkty}
  489. add 2 to {zloto.%player%}
  490. message "&6Trafiles na: &6Zloto [2] &7+2 pkt"
  491. execute console command "/playsound random.successful_hit %player%"
  492. else:
  493. chance of 33%:
  494. message "&6Trafiles na: &6Zloto &7+1 pkt"
  495. add 1 to {drop.%player%.punkty}
  496. add 1 to {zloto.%player%}
  497. drop gold ingot
  498. execute console command "/playsound random.successful_hit %player%"
  499. chance of {@procentzelazo}%:
  500. chance of 33%:
  501. message "&6Trafiles na: &8Zelazo [3] &7+3 pkt"
  502. add 3 to {drop.%player%.punkty}
  503. drop 3 iron ingot
  504. add 3 to {zelazo.%player%}
  505. execute console command "/playsound random.successful_hit %player%"
  506. else:
  507. chance of 33%:
  508. drop 2 iron ingot
  509. add 2 to {drop.%player%.punkty}
  510. add 2 to {zelazo.%player%}
  511. message "&6Trafiles na: &8Zelazo [2] &7+2 pkt"
  512. execute console command "/playsound random.successful_hit %player%"
  513. else:
  514. chance of 33%:
  515. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  516. drop iron ingot
  517. add 1 to {zelazo.%player%}
  518. add 1 to {drop.%player%.punkty}
  519. execute console command "/playsound random.successful_hit %player%"
  520. chance of {@procentemerald}%:
  521. if block's y-coordinate is smaller than {@heightemerald}:
  522. chance of 33%:
  523. drop 3 emerald
  524. add 4 to {drop.%player%.punkty}
  525. add 3 to {emerald.%player%}
  526. message "&6Trafiles na: &2Emerald [3] &7+4 pkt"
  527. execute console command "/playsound random.successful_hit %player%"
  528. else:
  529. chance of 33%:
  530. message "&6Trafiles na: &2Emerald [2] &7+3 pkt"
  531. drop 2 emerald
  532. add 2 to {emerald.%player%}
  533. add 3 to {drop.%player%.punkty}
  534. execute console command "/playsound random.successful_hit %player%"
  535. else:
  536. chance of 33%:
  537. message "&6Trafiles na: &2Emerald &7+2 pkt"
  538. drop emerald
  539. add 2 to {drop.%player%.punkty}
  540. add 1 to {emerald.%player%}
  541. execute console command "/playsound random.successful_hit %player%"
  542. player has permissions "drop.gracz":
  543. if tool of player is a 278 of fortune 3:
  544. chance of {@procentdiax}%:
  545. if block's y-coordinate is smaller than {@heightdiax}:
  546. chance of 25%:
  547. message "&6Trafiles na: &2Diamenty [4] &7+6 pkt"
  548. add 6 to {drop.%player%.punkty}
  549. drop 4 diamond
  550. add 4 to {diamond.%player%}
  551. execute console command "/playsound random.successful_hit %player%"
  552. else:
  553. chance of 25%:
  554. message "&6Trafiles na: &2Diamenty [3] &7+5 pkt"
  555. add 5 to {drop.%player%.punkty}
  556. drop 3 diamond
  557. add 3 to {diamond.%player%}
  558. execute console command "/playsound random.successful_hit %player%"
  559. else:
  560. chance of 25%:
  561. message "&6Trafiles na: &2Diamenty [2] &7+4 pkt"
  562. add 4 to {drop.%player%.punkty}
  563. drop 2 diamond
  564. add 2 to {diamond.%player%}
  565. execute console command "/playsound random.successful_hit %player%"
  566. else:
  567. chance of 25%:
  568. message "&6Trafiles na: &2Diamenty &7+3 pkt"
  569. add 3 to {drop.%player%.punkty}
  570. add 1 to {diamond.%player%}
  571. drop diamond
  572. execute console command "/playsound random.successful_hit %player%"
  573. chance of {@procentzloto}%:
  574. if block's y-coordinate is smaller than {@heightzloto}:
  575. chance of 25%:
  576. drop 4 gold ingot
  577. add 4 to {drop.%player%.punkty}
  578. add 4 to {zloto.%player%}
  579. message "&6Trafiles na: &eZloto [4] &7+4 pkt"
  580. execute console command "/playsound random.successful_hit %player%"
  581. else:
  582. chance of 25%:
  583. drop 3 gold ingot
  584. add 3 to {drop.%player%.punkty}
  585. add 3 to {zloto.%player%}
  586. message "&6Trafiles na: &eZloto [3] &7+3 pkt"
  587. execute console command "/playsound random.successful_hit %player%"
  588. else:
  589. chance of 25%:
  590. drop 2 gold ingot
  591. add 2 to {drop.%player%.punkty}
  592. add 2 to {zloto.%player%}
  593. message "&6Trafiles na: &eZloto [2] &7+2 pkt"
  594. execute console command "/playsound random.successful_hit %player%"
  595. else:
  596. chance of 25%:
  597. drop gold ingot
  598. add 1 to {drop.%player%.punkty}
  599. add 1 to {zloto.%player%}
  600. message "&6Trafiles na: &eZloto &7+1 pkt"
  601. execute console command "/playsound random.successful_hit %player%"
  602. chance of {@procentzelazo}%:
  603. chance of 25%:
  604. drop 4 iron ingot
  605. add 4 to {drop.%player%.punkty}
  606. add 4 to {zelazo.%player%}
  607. message "&6Trafiles na: &8Zelazo [4] &7+4 pkt"
  608. execute console command "/playsound random.successful_hit %player%"
  609. else:
  610. chance of 25%:
  611. drop 3 iron ingot
  612. add 3 to {drop.%player%.punkty}
  613. add 3 to {zloto.%player%}
  614. message "&6Trafiles na: &8Zelazo [3] &7+3 pkt"
  615. execute console command "/playsound random.successful_hit %player%"
  616. else:
  617. chance of 25%:
  618. drop 2 iron ingot
  619. add 2 to {drop.%player%.punkty}
  620. add 2 to {zloto.%player%}
  621. message "&6Trafiles na: &8Zelazo [2] &7+2 pkt"
  622. execute console command "/playsound random.successful_hit %player%"
  623. else:
  624. chance of 25%:
  625. drop iron ingot
  626. add 2 to {drop.%player%.punkty}
  627. add 1 to {zloto.%player%}
  628. message "&6Trafiles na: &8Zelazo &7+1 pkt"
  629. execute console command "/playsound random.successful_hit %player%"
  630. chance of {@procentemerald} + 0.3%:
  631. if block's y-coordinate is smaller than {@heightemerald}:
  632. chance of 25%:
  633. drop 4 emerald
  634. add 5 to {drop.%player%.punkty}
  635. add 4 to {emerald.%player%}
  636. message "&6Trafiles na: &2Emerald [4] &7+5 pkt"
  637. execute console command "/playsound random.successful_hit %player%"
  638. else:
  639. chance of 25%:
  640. drop 3 emerald
  641. add 4 to {drop.%player%.punkty}
  642. add 3 to {emerald.%player%}
  643. message "&6Trafiles na: &2Emerald [3] &7+4 pkt"
  644. execute console command "/playsound random.successful_hit %player%"
  645. else:
  646. chance of 25%:
  647. drop 2 emerald
  648. add 3 to {drop.%player%.punkty}
  649. add 2 to {emerald.%player%}
  650. message "&6Trafiles na: &2Emeraldy [2] &7+3 pkt"
  651. execute console command "/playsound random.successful_hit %player%"
  652. else:
  653. chance of 25%:
  654. drop emerald
  655. add 2 to {drop.%player%.punkty}
  656. add 1 to {emerald.%player%}
  657. message "&6Trafiles na: &2Emeraldy &7+2 pkt"
  658. execute console command "/playsound random.successful_hit %player%"
  659. if {drop.%player%.lvl} is 1:
  660. If {drop.%player%.punkty} is greater than 15:
  661. set {drop.%player%.lvl} to 2
  662. drop 35 xp
  663. execute console command "/playsound random.levelup %player%"
  664. execute console command "/playsound random.levelup %player%"
  665. execute console command "/playsound random.levelup %player%"
  666. send "&6Awansowales na &22 &6poziom kopania!"
  667. if {drop.%player%.lvl} is 2:
  668. If {drop.%player%.punkty} is greater than 50:
  669. broadcast "&6Gracz &2%player% &6awansowal na &23 &6poziom kopania&2!"
  670. send "&2Nagroda: &eDiamentowy Kilof"
  671. drop 1 278
  672. drop 45 xp
  673. execute console command "/playsound random.levelup %player%"
  674. execute console command "/playsound random.levelup %player%"
  675. execute console command "/playsound random.levelup %player%"
  676. set {drop.%player%.lvl} to 3
  677. if {drop.%player%.lvl} is 3:
  678. If {drop.%player%.punkty} is greater than 125:
  679. send "&6Awansowales na &24 &6poziom kopania!"
  680. drop 55 xp
  681. execute console command "/playsound random.levelup %player%"
  682. execute console command "/playsound random.levelup %player%"
  683. execute console command "/playsound random.levelup %player%"
  684. set {drop.%player%.lvl} to 4
  685. if {drop.%player%.lvl} is 4:
  686. If {drop.%player%.punkty} is greater than 250:
  687. send "&6Awansowales na &25 &6poziom kopania!"
  688. execute console command "/playsound random.levelup %player%"
  689. execute console command "/playsound random.levelup %player%"
  690. execute console command "/playsound random.levelup %player%"
  691. drop 65 xp
  692. set {drop.%player%.lvl} to 5
  693. if {drop.%player%.lvl} is 5:
  694. If {drop.%player%.punkty} is greater than 450:
  695. send "&6Awansowales na &26 &6poziom kopania!"
  696. execute console command "/playsound random.levelup %player%"
  697. execute console command "/playsound random.levelup %player%"
  698. execute console command "/playsound random.levelup %player%"
  699. drop 75 xp
  700. broadcast "&6Gracz &2%player% &6awansowal na &26 &6poziom kopania&2!"
  701. send "&2Nagroda: &eDiamentowy Kilof z wydajnoscia 3!"
  702. drop 1 278 of efficiency 3
  703. set {drop.%player%.lvl} to 6
  704. if {drop.%player%.lvl} is 6:
  705. If {drop.%player%.punkty} is greater than 650:
  706. send "&6Awansowales na &27 &6poziom kopania!"
  707. drop 85 xp
  708. execute console command "/playsound random.levelup %player%"
  709. execute console command "/playsound random.levelup %player%"
  710. execute console command "/playsound random.levelup %player%"
  711. set {drop.%player%.lvl} to 7
  712. if {drop.%player%.lvl} is 7:
  713. If {drop.%player%.punkty} is greater than 800:
  714. send "&6Awansowales na &28 &6poziom kopania!"
  715. drop 95 xp
  716. execute console command "/playsound random.levelup %player%"
  717. execute console command "/playsound random.levelup %player%"
  718. execute console command "/playsound random.levelup %player%"
  719. set {drop.%player%.lvl} to 8
  720. if {drop.%player%.lvl} is 8:
  721. If {drop.%player%.punkty} is greater than 1050:
  722. broadcast "&6Gracz &2%player% &6awansowal na &29 &6poziom kopania&2!"
  723. send "&6Awansowales na &29 &6poziom kopania!"
  724. execute console command "/playsound random.levelup %player%"
  725. execute console command "/playsound random.levelup %player%"
  726. execute console command "/playsound random.levelup %player%"
  727. drop 105 xp
  728. send "&2Nagroda: &eDiamentowy Kilof z wydajnoscia 4 i szczesciem 2!"
  729. drop 1 278 of efficiency 4 and fortune 2
  730. set {drop.%player%.lvl} to 9
  731. if {drop.%player%.lvl} is 9:
  732. If {drop.%player%.punkty} is greater than 1250:
  733. send "&6Awansowales na &210 &6poziom kopania!"
  734. drop 1 278 of fortune 1
  735. execute console command "/playsound random.levelup %player%"
  736. execute console command "/playsound random.levelup %player%"
  737. execute console command "/playsound random.levelup %player%"
  738. drop 115 xp
  739. set {drop.%player%.lvl} to 10
  740. if {drop.%player%.lvl} is 10:
  741. If {drop.%player%.punkty} is greater than 1500:
  742. drop 125 xp
  743. execute console command "/playsound random.levelup %player%"
  744. execute console command "/playsound random.levelup %player%"
  745. execute console command "/playsound random.levelup %player%"
  746. send "&6Awansowales na &211 &6poziom kopania!"
  747. set {drop.%player%.lvl} to 11
  748. if {drop.%player%.lvl} is 11:
  749. If {drop.%player%.punkty} is greater than 1650:
  750. set {drop.%player%.lvl} to 12
  751. drop 135 xp
  752. execute console command "/playsound random.levelup %player%"
  753. execute console command "/playsound random.levelup %player%"
  754. execute console command "/playsound random.levelup %player%"
  755. broadcast "&6Gracz &2%player% &6awansowal na &212 &6poziom kopania&2!"
  756. send "&6Awansowales na &212 &6poziom kopania!"
  757. send "&2Nagroda: &eDiamentowy Kilof z wydajnoscia 4 i szczesciem 3!"
  758. drop 1 278 of efficiency 4 and fortune 3
  759. if {drop.%player%.lvl} is 12:
  760. If {drop.%player%.punkty} is greater than 1800:
  761. send "&6Awansowales na &213 &6poziom kopania!"
  762. drop 145 xp
  763. execute console command "/playsound random.levelup %player%"
  764. execute console command "/playsound random.levelup %player%"
  765. execute console command "/playsound random.levelup %player%"
  766. set {drop.%player%.lvl} to 13
  767. if {drop.%player%.lvl} is 13:
  768. If {drop.%player%.punkty} is greater than 2100:
  769. send "&6Awansowales na &214 &6poziom kopania!"
  770. drop 155 xp
  771. execute console command "/playsound random.levelup %player%"
  772. execute console command "/playsound random.levelup %player%"
  773. execute console command "/playsound random.levelup %player%"
  774. set {drop.%player%.lvl} to 14
  775. if {drop.%player%.lvl} is 14:
  776. If {drop.%player%.punkty} is greater than 2200:
  777. send "&6Awansowales na &215 &6poziom kopania!"
  778. broadcast "&6Gracz &2%player% &6awansowal na &215 &6poziom kopania&2!"
  779. drop 165 xp
  780. execute console command "/playsound random.levelup %player%"
  781. execute console command "/playsound random.levelup %player%"
  782. execute console command "/playsound random.levelup %player%"
  783. send "&6Gracz &2%player% &6awansowal na &215 &6poziom kopania&2!"
  784. send "&6Awansowales na &215 &6poziom kopania!"
  785. send "&2Nagroda: &eDiamentowy Kilof z wydajnoscia 5 i szczesciem 3!"
  786. drop 1 278 of efficiency 5 and fortune 3
  787. set {drop.%player%.lvl} to 15
  788. if {drop.%player%.lvl} is 15:
  789. If {drop.%player%.punkty} is greater than 2500:
  790. send "&6Awansowales na &216 &6poziom kopania!"
  791. drop 175 xp
  792. execute console command "/playsound random.levelup %player%"
  793. execute console command "/playsound random.levelup %player%"
  794. execute console command "/playsound random.levelup %player%"
  795. set {drop.%player%.lvl} to 16
  796. if {drop.%player%.lvl} is 16:
  797. If {drop.%player%.punkty} is greater than 2800:
  798. send "&6Awansowales na &217 &6poziom kopania!"
  799. drop 185 xp
  800. execute console command "/playsound random.levelup %player%"
  801. execute console command "/playsound random.levelup %player%"
  802. execute console command "/playsound random.levelup %player%"
  803. set {drop.%player%.lvl} to 17
  804. if {drop.%player%.lvl} is 17:
  805. If {drop.%player%.punkty} is greater than 3000:
  806. drop 195 xp
  807. execute console command "/playsound random.levelup %player%"
  808. execute console command "/playsound random.levelup %player%"
  809. execute console command "/playsound random.levelup %player%"
  810. set {drop.%player%.lvl} to 18
  811. broadcast "&6Gracz &2%player% &6awansowal na &218 &6poziom kopania&2!"
  812. send "&6Awansowales na &218 &6poziom kopania!"
  813. send "&2Nagroda: &eDiamentowa Zbroja, buty ochrona 4!"
  814. drop 1 311 of protection 4
  815. drop 1 313 of protection 4
  816. if {drop.%player%.lvl} is 18:
  817. If {drop.%player%.punkty} is greater than 3250:
  818. send "&6Awansowales na &219 &6poziom kopania!"
  819. drop 205 xp
  820. execute console command "/playsound random.levelup %player%"
  821. execute console command "/playsound random.levelup %player%"
  822. execute console command "/playsound random.levelup %player%"
  823. set {drop.%player%.lvl} to 19
  824. if {drop.%player%.lvl} is 19:
  825. If {drop.%player%.punkty} is greater than 3500:
  826. send "&6Awansowales na &220 &6poziom kopania!"
  827. execute console command "/playsound random.levelup %player%"
  828. execute console command "/playsound random.levelup %player%"
  829. execute console command "/playsound random.levelup %player%"
  830. drop 215 xp
  831. set {drop.%player%.lvl} to 20
  832. if {drop.%player%.lvl} is 20:
  833. If {drop.%player%.punkty} is greater than 3700:
  834. drop 225 xp
  835. execute console command "/playsound random.levelup %player%"
  836. execute console command "/playsound random.levelup %player%"
  837. execute console command "/playsound random.levelup %player%"
  838. set {drop.%player%.lvl} to 21
  839. broadcast "&6Gracz &2%player% &6awansowal na &221 &6poziom kopania&2!"
  840. send "&6Awansowales na &221 &6poziom kopania!"
  841. send "&2Nagroda: &eDiamentowa Zbroja, buty ochrona 4!"
  842. drop 1 312 of protection 4
  843. drop 1 310 of protection 4
  844. if {drop.%player%.lvl} is 21:
  845. If {drop.%player%.punkty} is greater than 4000:
  846. set {drop.%player%.lvl} to 22
  847. drop 235 xp
  848. execute console command "/playsound random.levelup %player%"
  849. execute console command "/playsound random.levelup %player%"
  850. execute console command "/playsound random.levelup %player%"
  851. send "&6Awansowales na &222 &6poziom kopania!"
  852. if {drop.%player%.lvl} is 22:
  853. If {drop.%player%.punkty} is greater than 4500:
  854. send "&6Awansowales na &223 &6poziom kopania!"
  855. drop 245 xp
  856. execute console command "/playsound random.levelup %player%"
  857. execute console command "/playsound random.levelup %player%"
  858. execute console command "/playsound random.levelup %player%"
  859. set {drop.%player%.lvl} to 23
  860. if {drop.%player%.lvl} is 23:
  861. If {drop.%player%.punkty} is greater than 5000:
  862. drop 255 xp
  863. execute console command "/playsound random.levelup %player%"
  864. execute console command "/playsound random.levelup %player%"
  865. execute console command "/playsound random.levelup %player%"
  866. set {drop.%player%.lvl} to 24
  867. broadcast "&6Gracz &2%player% &6awansowal na &221 &6poziom kopania&2!"
  868. send "&6Awansowales na &221 &6poziom kopania!"
  869. send "&2Nagroda: &e2 KOXY!"
  870. drop 2 322:1
  871. if {drop.%player%.lvl} is 24:
  872. If {drop.%player%.punkty} is greater than 5700:
  873. send "&6Awansowales na &225 &6poziom kopania!"
  874. drop 265 xp
  875. execute console command "/playsound random.levelup %player%"
  876. execute console command "/playsound random.levelup %player%"
  877. execute console command "/playsound random.levelup %player%"
  878. set {drop.%player%.lvl} to 25
  879. if {drop.%player%.lvl} is 25:
  880. If {drop.%player%.punkty} is greater than 6400:
  881. send "&6Awansowales na &226 &6poziom kopania!"
  882. drop 275 xp
  883. execute console command "/playsound random.levelup %player%"
  884. execute console command "/playsound random.levelup %player%"
  885. execute console command "/playsound random.levelup %player%"
  886. set {drop.%player%.lvl} to 26
  887. if {drop.%player%.lvl} is 26:
  888. If {drop.%player%.punkty} is greater than 7000:
  889. drop 285 xp
  890. execute console command "/playsound random.levelup %player%"
  891. execute console command "/playsound random.levelup %player%"
  892. execute console command "/playsound random.levelup %player%"
  893. set {drop.%player%.lvl} to 27
  894. broadcast "&6Gracz &2%player% &6awansowal na &227 &6poziom kopania&2!"
  895. send "&6Awansowales na &227 &6poziom kopania!"
  896. send "&2Nagroda: &e4 KOXY!"
  897. drop 4 322:1
  898. if {drop.%player%.lvl} is 27:
  899. If {drop.%player%.punkty} is greater than 8000:
  900. send "&6Awansowales na &228 &6poziom kopania!"
  901. drop 295 xp
  902. execute console command "/playsound random.levelup %player%"
  903. execute console command "/playsound random.levelup %player%"
  904. execute console command "/playsound random.levelup %player%"
  905. set {drop.%player%.lvl} to 28
  906. if {drop.%player%.lvl} is 28:
  907. If {drop.%player%.punkty} is greater than 9000:
  908. send "&6Awansowales na &229 &6poziom kopania!"
  909. drop 305 xp
  910. execute console command "/playsound random.levelup %player%"
  911. execute console command "/playsound random.levelup %player%"
  912. execute console command "/playsound random.levelup %player%"
  913. set {drop.%player%.lvl} to 29
  914. if {drop.%player%.lvl} is 29:
  915. If {drop.%player%.punkty} is greater than 10000:
  916. drop 315 xp
  917. execute console command "/playsound random.levelup %player%"
  918. execute console command "/playsound random.levelup %player%"
  919. execute console command "/playsound random.levelup %player%"
  920. set {drop.%player%.lvl} to 30
  921. broadcast "&6Gracz &2%player% &6awansowal na &230 [Max] &6poziom kopania&2!"
  922. send "&6Awansowales na &221 &6poziom kopania!"
  923. # Z A M I A N A R O D #
  924. on mine 14:
  925. cancel event
  926. set block to stone
  927. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  928. on mine 15:
  929. cancel event
  930. set block to stone
  931. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  932. on mine 16:
  933. cancel event
  934. set block to stone
  935. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  936. on mine 21:
  937. cancel event
  938. set block to stone
  939. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  940. on mine 56:
  941. cancel event
  942. set block to stone
  943. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  944. on mine 73:
  945. cancel event
  946. set block to stone
  947. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  948. on mine 74:
  949. cancel event
  950. set block to stone
  951. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  952. on mine 129:
  953. cancel event
  954. set block to stone
  955. send "&6Wszystko wydobedziesz z kamiena &2/kamien"
  956. # K O M E N D A /DAJPOZIOM #
  957. command /dajpoziom:
  958. trigger:
  959. if player has permission "procrafters.admin":
  960. set {drop.%player%.lvl} to 30
  961. set {drop.%player%.punkty} to 10001
  962. broadcast "&6Gracz &2%player% &6awansowal na &230 [Max] &6poziom kopania&2!"
  963. stop
  964. # K O M E N D A /KAMIEN #
  965. command /kamien:
  966. description: Informacje o itemach ze stone'a
  967. trigger:
  968. send "&4<&6||&4>&8============= &6&l<< &7Dropy &6&l>> &8=============&4<&6||&4>"
  969. send "&e&o >> &2Diament: &70.60% &6+ &70.20% &8| &6Vip +0.30%"
  970. send "&e&o >> &2Szmaragd: &70.70% &6+ &70.20% &8| &6Vip +0.30%"
  971. send "&e&o >> &2Zloto: &71.10% &6+ &70.20% &8| &6Vip +0.30%"
  972. send "&e&o >> &2Zelazo: &71.90% &6+ &70.20% &8| &6Vip +0.30%"
  973. send "&e&o >> &2Redstone: &70.80% &6+ &70.20% &8| &6Vip +0.30%"
  974. send "&e&o >> &2Wegiel: &71.00% &6+ &70.20% &8| &6Vip +0.30%"
  975. send "&e&o >> &2Lapis: &70.5% &6+ &70.20% &8| &6Vip +0.30%"
  976. send "&e&o >> &2Proch: &71.00% &6+ &70.20% "
  977. send "&e&o >> &2Perla Endermana: &70.30% &6+ &70.20%"
  978. send "&4<&6||&4>&8======================================&4<&6||&4>"
  979. # K O M E N D A /PUNKTY #
  980. command /punkty:
  981. trigger:
  982. if {drop.%player%.lvl} is 1:
  983. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&225&7, posiadasz &21 POZIOM&7."
  984. if {drop.%player%.lvl} is 2:
  985. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&250&7, posiadasz &22 POZIOM&7."
  986. if {drop.%player%.lvl} is 3:
  987. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&2150&7, posiadasz &23 POZIOM&7."
  988. if {drop.%player%.lvl} is 4:
  989. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&2250&7, posiadasz &24 POZIOM&7."
  990. if {drop.%player%.lvl} is 5:
  991. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&2450&7, posiadasz &25 POZIOM&7."
  992. if {drop.%player%.lvl} is 6:
  993. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&2650&7, posiadasz &26 POZIOM&7."
  994. if {drop.%player%.lvl} is 7:
  995. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&2800&7, posiadasz &27 POZIOM&7."
  996. if {drop.%player%.lvl} is 8:
  997. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&21050&7, posiadasz &28 POZIOM&7."
  998. if {drop.%player%.lvl} is 9:
  999. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&21250&7, posiadasz &29 POZIOM&7."
  1000. if {drop.%player%.lvl} is 10:
  1001. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&21500&7, posiadasz &210 POZIOM&7."
  1002. if {drop.%player%.lvl} is 11:
  1003. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&21650&7, posiadasz &211 POZIOM&7."
  1004. if {drop.%player%.lvl} is 12:
  1005. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&21800&7, posiadasz &212 POZIOM&7."
  1006. if {drop.%player%.lvl} is 13:
  1007. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&22100&7, posiadasz &213 POZIOM&7."
  1008. if {drop.%player%.lvl} is 14:
  1009. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&22200&7, posiadasz &214 POZIOM&7."
  1010. if {drop.%player%.lvl} is 15:
  1011. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&22500&7, posiadasz &215 POZIOM&7."
  1012. if {drop.%player%.lvl} is 16:
  1013. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&22800&7, posiadasz &216 POZIOM&7."
  1014. if {drop.%player%.lvl} is 17:
  1015. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&23000&7, posiadasz &217 POZIOM&7."
  1016. if {drop.%player%.lvl} is 18:
  1017. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&23250&7, posiadasz &218 POZIOM&7."
  1018. if {drop.%player%.lvl} is 19:
  1019. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&23500&7, posiadasz &219 POZIOM&7."
  1020. if {drop.%player%.lvl} is 20:
  1021. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&23700&7, posiadasz &220 POZIOM&7."
  1022. if {drop.%player%.lvl} is 21:
  1023. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&24000&7, posiadasz &221 POZIOM&7."
  1024. if {drop.%player%.lvl} is 22:
  1025. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&24500&7, posiadasz &222 POZIOM&7."
  1026. if {drop.%player%.lvl} is 23:
  1027. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&25000&7, posiadasz &223 POZIOM&7."
  1028. if {drop.%player%.lvl} is 24:
  1029. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&25700&7, posiadasz &224 POZIOM&7."
  1030. if {drop.%player%.lvl} is 25:
  1031. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&26400&7, posiadasz &225 POZIOM&7."
  1032. if {drop.%player%.lvl} is 26:
  1033. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&27000&7, posiadasz &226 POZIOM&7."
  1034. if {drop.%player%.lvl} is 27:
  1035. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&28000&7, posiadasz &227 POZIOM&7."
  1036. if {drop.%player%.lvl} is 28:
  1037. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&29000&7, posiadasz &228 POZIOM&7."
  1038. if {drop.%player%.lvl} is 29:
  1039. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7/&210000&7, posiadasz &229 POZIOM&7."
  1040. if {drop.%player%.lvl} is 30:
  1041. send "&7Twoja ilosc punktow to: &2%{drop.%player%.punkty}%&7, posiadasz &2MAKSYMALNY POZIOM"
  1042. on mine stone:
  1043. chance of 1%:
  1044. chance of 25%:
  1045. drop 4 289
  1046. message "&6Trafiles na: &8Proch [4]"
  1047. else:
  1048. chance of 25%:
  1049. drop 3 289
  1050. message "&6Trafiles na: &8Proch [3]"
  1051. else:
  1052. chance of 25%:
  1053. drop 2 289
  1054. message "&6Trafiles na: &8Proch [2]"
  1055. else:
  1056. chance of 25%:
  1057. drop 289
  1058. message "&6Trafiles na: &8Proch"
  1059. on mine stone:
  1060. chance of 0.3%:
  1061. chance of 25%:
  1062. drop 2 368
  1063. message "&6Trafiles na: &5Perle Endermana [2]"
  1064. else:
  1065. chance of 25%:
  1066. drop 1 368
  1067. message "&6Trafiles na: &5Perle Endermana"
  1068. on mine stone:
  1069. chance of 100%:
  1070. drop 3 xp
  1071. add 1 to {kamien.%player%}
  1072. command /statystyki [<player=%player%>]:
  1073. trigger:
  1074. if arg player is online:
  1075. send "&4<&6||&4>&8============= &6&l<< &7Statystyki &6&l>> &8=============&4<&6||&4>"
  1076. send "&e&o >> &7Gracz: &2%arg 1%"
  1077. send "&e&o >> &7Poziom (kopania): &2%{drop.%arg 1%.lvl}%"
  1078. send "&e&o >> &7Poziom (pasek): &2%level of arg player%"
  1079. send "&e&o >> &7Wykopal diamentow: &2%{diamond.%arg player%}%"
  1080. send "&e&o >> &7Wykopal szmaragdy: &2%{emerald.%arg player%}%"
  1081. send "&e&o >> &7Wykopal zelaza: &2%{zelazo.%arg player%}%"
  1082. send "&e&o >> &7Wykopal zlota: &2%{zloto.%arg player%}%"
  1083. send "&e&o >> &7Wykopal Lapizu: &2%{lapis.%arg player%}%"
  1084. send "&e&o >> &7Wykopal proszku redstone: &2%{redstone.%arg player%}%"
  1085. send "&e&o >> &7Wykopal wegla: &2%{wegiel.%arg player%}%"
  1086. send "&e&o >> &7Wykopany &8KAMIEN: &2%{kamien.%arg player%}%"
  1087. send "&4<&6||&4>&8===========================================&4<&6||&4>"
Advertisement
Add Comment
Please, Sign In to add comment