Advertisement
Guest User

Frastic

a guest
Oct 20th, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. #=================#
  2. # Skrzynki #
  3. #=================#
  4. #Skrypt by Frastic#
  5. #=================#
  6. # Config #
  7. #=================#
  8. options:
  9.  
  10. #Szansa na dropnięcie klucza
  11. chance: 5%
  12. #Nazwa klucza
  13. keyname: &4&lKlucz
  14. #Crafting skrzynki
  15. 1: Gold Block
  16. 2: Gold Block
  17. 3: Gold Block
  18. 4: Gold Block
  19. 5: enchanted golden apple
  20. 6: Gold Block
  21. 7: Gold Block
  22. 8: Gold Block
  23. 9: Gold Block
  24. #Nazwa skrzynki
  25. chestname: &4&lSkrzynka
  26.  
  27. #=================#
  28. # Kod #
  29. #=================#
  30.  
  31. on death:
  32. if victim is a player:
  33. chance of {@chance}:
  34. give player a tripwire hook named "{@keyname}"
  35.  
  36. on script load:
  37. register new shaped recipe for chest named "{@chestname}" using {@1}, {@2}, {@3}, {@4}, {@5}, {@6}, {@7}, {@8}, {@9}
  38.  
  39. command /skrzynia [<text>] [<text>]:
  40. trigger:
  41. if arg 1 is "give":
  42. if arg 2 is "key" or "klucz":
  43. give player a tripwire hook named "{@keyname}"
  44. if arg 2 is "skrzynka" or "chest":
  45. give player a chest named "{@chestname}"
  46. else:
  47. send "Poprawne uzycie: '/skrzynia give key/klucz/skrzynka/chest'" to player
  48.  
  49. on rightclick:
  50. if player is holding a tripwire hook named "{@keyname}":
  51. if player has a chest named "{@chestname}":
  52. cancel event
  53. remove 1 chest named "{@chestname}" from the player
  54. remove 1 tripwire hook named "{@keyname}" from the player
  55. chance of 1%:
  56. give player a diamond sword of sharpness 5
  57. chance of 1%:
  58. give player a diamond pickaxe of efficiency 5
  59. chance of 1%:
  60. give player a diamond helmet of protection 4
  61. chance of 1%:
  62. give player a diamond Chestplate of protection 4
  63. chance of 1%:
  64. give player a diamond Leggings of protection 4
  65. chance of 1%:
  66. give player a diamond Boots of protection 4
  67. chance of 1%:
  68. give player a enchanted golden apple
  69. chance of 1%:
  70. give player a golden apple
  71. chance of 1%:
  72. give player a gold block
  73. else:
  74. cancel event
  75. if player is holding a chest named "{@chestname}":
  76. cancel event
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement