Advertisement
NovaViper

My Crafttweaker script

Dec 22nd, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. import crafttweaker.item.IItemStack;
  2.  
  3. val backpackMaterialMap as IItemStack[int] = {
  4. 0 : <minecraft:dye:0>,
  5. 1 : <minecraft:gunpowder>,
  6. 2 : <minecraft:grass>,
  7. 4 : <minecraft:dirt>,
  8. 5 : <minecraft:dirt>,
  9. 6 : <minecraft:dirt>,
  10. 7 : <minecraft:dirt>,
  11. 8 : <minecraft:dirt>,
  12. 9 : <minecraft:dirt>,
  13. 10 : <minecraft:dirt>,
  14. 11 : <minecraft:dirt>,
  15. 12 : <minecraft:dirt>,
  16. 13 : <minecraft:dirt>,
  17. 14 : <minecraft:dirt>,
  18. 15 : <minecraft:dirt>
  19. };
  20.  
  21.  
  22. for i in 0 to 16 {
  23. print(backpackMaterialMap[i].displayName);
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement