_tsts_

CIT Translated

Jun 11th, 2016
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. Minecraft Tutorial - McPatcher CIT (Armor, Bows Items ) https://www.youtube.com/watch?v=dSqRUSHppVY
  2.  
  3. Normal Item
  4. Item.png - Picture
  5.  
  6. In the properties file:
  7.  
  8. (Item.properties this is the file name in the file is everything from matchItem to tile=Item)
  9.  
  10. Item.properties
  11. matchItems=ID
  12. nbt.display.Name=IngameName
  13. damage=0-1561
  14. tile=Item
  15.  
  16. Bow:
  17. Textures you need
  18. Bow.png
  19. Bow1.png
  20. Bow2.png
  21. Bow3.png
  22.  
  23. In the properties
  24.  
  25. Bow.properties :
  26. matchItems=261
  27. nbt.display.Name=IngameName
  28. type=item
  29. texture.bow_standby=Bow
  30. texture.bow_pulling_0=Bow1
  31. texture.bow_pulling_1=Bow2
  32. texture.bow_pulling_2=Bow3
  33.  
  34. Armor
  35. leather_layer_1.png
  36. leather_layer_2.png
  37. (this is how the armor look on the player)
  38. ArmorA.png
  39. ArmorB.png
  40. ArmorC.png
  41. ArmorD.png
  42. (this is how it looks in your hand)
  43. L1.png
  44. L2.png
  45. (only for leather armor, as big as leather_layer_1/2, but empty)
  46.  
  47. for on player:
  48.  
  49. Chestplate1.properties
  50. type=armor
  51. matchItems=ID
  52. texture.leather_layer_1=leather_layer_1
  53. texture.leather_layer_2=leather_layer_2
  54. texture.leather_layer_1_overlay=L1
  55. texture.leather_layer_2_overlay=L2
  56. nbt.display.Name=InGameName
  57.  
  58. for in hand:
  59.  
  60. Chestplate2.properties
  61. type=item
  62. matchItems=ID
  63. texture=ArmorA
  64. nbt.display.Name=IngameName
  65.  
  66.  
  67. ^ this is only for one armor piece: ArmorA
  68.  
  69. ---------------------------------------------
  70. ID = Item ID
  71. IngameNAme = Name of Item in minecraft
  72.  
  73. look in the versions folder for the names of other armor
  74. and replace texture.leather_layer_1=...
  75. with what you find
  76. (texture.(Name of file)=...)
  77.  
  78. YOu can change the texture files name but then there has to be the new file name at
  79. Texture=
Advertisement
Add Comment
Please, Sign In to add comment