Posted October 26, 201410 yr Hey i maked a mod called RubyMod and i have added Block ingot Pickaxe etc and this is what happen when i try http://gyazo.com/7dc57d8bfc6712c6093cf9202de63890 NEWB! in java im sorry
October 26, 201410 yr Author U mean this : C:\RubyMod\src\main\resources\assets\textures\items and C:\RubyMod\src\main\resources\assets\textures\blocks NEWB! in java im sorry
October 26, 201410 yr Is should be assets/rubymod/textures, not assets/textures. Check out my mod, Realms of Chaos, here. If I helped you, be sure to press the "Thank You" button!
October 26, 201410 yr Author this is what i have done and you see better: https://www.youtube.com/watch?v=UQXsWjeW23A&feature=youtu.be NEWB! in java im sorry
October 26, 201410 yr 1) The video is private. 2) Did it work or not? Check out my mod, Realms of Chaos, here. If I helped you, be sure to press the "Thank You" button!
October 27, 201410 yr Author Did not work here the link https://www.youtube.com/watch?v=UQXsWjeW23A&list=UUfNK2YXItZV72uubtuSJU8A NEWB! in java im sorry
October 27, 201410 yr you need to register like this: "modid : textureName" modid is the lower case modid the textureName is the name of the texture
October 27, 201410 yr Author Huh? this? @Mod(modid = RubyMod.MODID, version = RubyMod.VERSION) public class RubyMod { public static final String MODID = "Ruby Mod"; public static final String VERSION = "1.7.2"; NEWB! in java im sorry
October 27, 201410 yr for example: @SideOnly(Side.CLIENT) public void registerIcons(IIconRegister reg){ this.itemIcon = reg.registerIcon("ruby mod : rubypickaxe"); }
October 27, 201410 yr Author This is one om my block RubyOre package com.Ruby.RubyMod; import java.util.Random; import net.minecraft.block.Block; import net.minecraft.block.material.Material; import net.minecraft.client.renderer.texture.IIconRegister; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; public class RubyOre extends Block { public RubyOre(int id, Material mat){ super(mat); this.setCreativeTab(CreativeTabs.tabBlock); } @Override public void registerBlockIcons(IIconRegister p_149651_1_) { this.blockIcon = p_149651_1_.registerIcon("Ruby:oreRuby"); } public Item func_149650_a(int par1, Random rand, int par2){ return RubyMod.RubyIngot; } } What cna i do diff here? Btw add me on skype Xetapro12 if u want to conntact me other ways NEWB! in java im sorry
October 27, 201410 yr this.blockIcon = p_149651_1_.registerIcon("Ruby:oreRuby"); 'Ruby' needs to change to 'rubymod' since that's the modID: @Override public void registerBlockIcons(IIconRegister p_149651_1_) { this.blockIcon = p_149651_1_.registerIcon("rubymod:oreRuby"); }
October 27, 201410 yr you dont use the registerBlockIcon() method in 1.7, but if your using 1.6, then update
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.