Guest User

Untitled

a guest
Apr 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. package net.minecraft.src;
  2.  
  3. import net.minecraft.client.Minecraft;
  4.  
  5. public class mod_bsp extends BaseMod{
  6.  
  7.  
  8. public static final Item bsp = new Item(200).setItemName("bsp");
  9.  
  10. public void load() // public mod_bsp() {}
  11. {
  12. ModLoader.AddName(bsp, "Wirklicher Ingame Name");
  13. bsp.iconIndex = ModLoader.addOverride("/gui/items.png", "/bsp.png");
  14. }
  15.  
  16.  
  17. public String getVersion() {
  18. return "1.0.0";
  19. }
  20. }
Add Comment
Please, Sign In to add comment