Advertisement
Guest User

skit 0.3

a guest
Jul 13th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. command /skit [<text>]:
  2. usage:&cFait /skit kits pour voir la liste des kits.
  3. trigger:
  4. open chest with 1 rows named "&6Kits" to player
  5. wait 1 tick
  6. format slot 2 of player with iron sword named "&e&lGuerrier" to close then run [make player execute command "skit guerrier"]
  7. format slot 3 of player with bow named "&e&lArcher" to close then run [make player execute command "skit archer"]
  8. format slot 4 of player with iron pickaxe named "&e&lMineur" to close then run [make player execute command "skit Mineur"]
  9. format slot 5 of player with cobblestone named "&e&lConstructeur" to close then run [make player execute command "skit Constructeur"]
  10. format slot 6 of player with iron hoe named "&e&lCultivateur" to close then run [make player execute command "skit Cultivateur"]
  11. if arg 1 is "kits" or "help":
  12. send "&3Voici la liste des kits:"
  13. send "&6/skit guerrier"
  14. send "&6/skit archer"
  15. send "&6/skit Constructeur"
  16. send "&6/skit Cultivateur"
  17. if arg 1 is "guerrier":
  18. clear player's inventory
  19. equip player with iron helmet
  20. equip player with iron chestplate
  21. equip player with iron leggings
  22. equip player with iron boots
  23. set slot 0 of player to iron sword
  24. set slot 1 of player to 64 steak
  25. send "&6Vous avez reçu le kit Guerrier" to player
  26. if arg 1 is "archer":
  27. clear player's inventory
  28. equip player with leather helmet
  29. equip player with leather chestplate
  30. equip player with leather leggings
  31. equip player with leather boots
  32. set slot 0 of player to stone sword
  33. set slot 1 of player to bow
  34. set slot 2 of player to 64 steak
  35. set slot 9 of player to 64 arrow
  36. send "&6Vous avez reçu le kit Archer" to player
  37. if arg 1 is "Constructeur":
  38. clear player's inventory
  39. equip player with leather helmet
  40. equip player with leather chestplate
  41. equip player with leather leggings
  42. equip player with leather boots
  43. set slot 0 of player to stone sword
  44. set slot 2 of player to 64 planks
  45. set slot 3 of player to 20 glass
  46. set slot 4 of player to 64 cobblestone
  47. set slot 5 of player to 32 carpet
  48. set slot 1 of player to 64 steak
  49. set slot 6 of player to 32 stained hardened clay
  50. send "&6Vous avez reçu le kit Constructeur" to player
  51. if arg 1 is "Mineur":
  52. clear player's inventory
  53. equip player with leather helmet
  54. equip player with leather chestplate
  55. equip player with leather leggings
  56. equip player with leather boots
  57. set slot 0 of player to stone sword
  58. set slot 1 of player to 64 steak
  59. set slot 2 of player to 64 torch
  60. give player 2 iron pickaxe of efficiency 2
  61. give player 1 iron shovel of efficiency 2
  62. send "&6Vous avez reçu le kit Mineur" to player
  63. if arg 1 is "Cultivateur":
  64. clear player's inventory
  65. equip player with leather helmet
  66. equip player with leather chestplate
  67. equip player with leather leggings
  68. equip player with leather boots
  69. set slot 0 of player to stone sword
  70. set slot 1 of player to 64 steak
  71. set slot 2 of player to iron hoe
  72. set slot 3 of player to 2 water bucket
  73. set slot 4 of player to 16 wheat seeds
  74. send "&6Vous avez reçu le kit Cultivateur" to player
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement