Jump to content

Soviet

Members
  • Posts

    38
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed

Soviet's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Bump... My armour texture line: @Override public String getArmorTexture(ItemStack stack, Entity entity, int slot, int layer) { return "/alloycraft/textures/armor/copper_1.png"; //path to the armour texture } The error: Please, I really need help to find my armor path.
  2. Well apparently, no, I can't seem to find where to put my armour textures. Any help with that please ?
  3. Hello, I've experienced few troubles with the new icons directory and cannot seem to be able to get things done right. So, my textures and icons code are this: return "/mymod/textures/armor/myarmor_1.png" this.itemIcon = icon.registerIcon("mymod:myitem"); So... With those lines shown, what's the correct asset directory ? Is it Forge\mcp\src\Minecraft\assets\ ? Because it doesn't seem to work. Thanks by advance and have a great day.
  4. So... What do I have to do to make it work on SMP then ?
  5. Line 56 of Alloycraft is...? public final static Item bootsSteel = new SovSteelBoots(908, steelArmorMaterial2, RenderingRegistry.addNewArmourRendererPrefix("steel"), 3).setUnlocalizedName("steelBoots").setCreativeTab(CreativeTabs.tabCombat); This is the first armor line in my main class.
  6. Bump... Please, I don't understand what I have to do to make it work on SMP.
  7. I used your methods and yes, it works. Problem is, it still crashes my server.jar:
  8. I did like you said, I still get iron texture. Pretty sure you method works but what do I have to change ? Here's a sample of my code: public final static Item bootsSteel = new SovSteelBoots(908, steelArmorMaterial2, 2, 3).setUnlocalizedName("steelBoots").setCreativeTab(CreativeTabs.tabCombat); So, 2 is the iron texture. What do I replace it with ?
  9. I mean, my items are textured. It's when worn they aren't.
  10. Doesn't work. I want to do an armor with custom textures. I don't want it to have iron textures.
  11. Thank you for the answer, but what is the Forge method for ModLoader.addarmor ?
  12. I don't know if it helps, but when I put my mod in "coremods" instead of "mods" in my server folders, the server doesn't crash anymore. But! When I try to place a block from my mod, it instantly disappears (spawn protection not counted) and is removed from my inventory. Also, I don't see any traces of my custom ores...
  13. Hello again, I would like some help to make my mod working on SMP. According to the previous topic, http://www.minecraftforge.net/forum/index.php/topic,3053.msg20596.html#msg20596, all you need to do is to put your mod in the server and that's fine. Well, not for me. In solo, mod works fine and does not crash. I get immediate crash when trying to set it up on SMP. I used the Forge ModLoader to load my mod. Here's the log: From what I read, it has trouble with the armor adding by ModLoader. Here are the culprits: Can anyone give a hand? Thanks by advance.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.