Posted April 27, 201510 yr Hi, I just setup the folders... (with gradlew setupDecompWorkspace and gradlew eclipse) And, wen I run the mod.. I have this issues: [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN minecraft [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: domain minecraft is missing 1 texture [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: domain minecraft has 3 locations: [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: unknown resourcepack type net.minecraft.client.resources.DefaultResourcePack : Default [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: mod FML resources at C:\Users\{me}\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.3.1395-1710ls\forgeSrc-1.7.10-10.13.3.1395-1710ls.jar [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: mod Forge resources at C:\Users\{me}\.gradle\caches\minecraft\net\minecraftforge\forge\1.7.10-10.13.3.1395-1710ls\forgeSrc-1.7.10-10.13.3.1395-1710ls.jar [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain minecraft are: [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/orerubi.png [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain minecraft [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [13:25:34] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=
April 27, 201510 yr Author I'm too noob in this... this is my block class: public class OreRubi extends Block { private String name= "orerubi"; public OreRubi(){ super (Material.rock); GameRegistry.registerBlock(this, name); setBlockName(this.name); setBlockTextureName(this.name); setCreativeTab(CreativeTabs.tabBlock); setHardness(0.5f); } } and my main class: @Mod(modid = MainChomod.MODID, version = MainChomod.VERSION) public class MainChomod { public static final String MODID = "chomod"; public static final String VERSION = "1.0"; public static Block rubiOre; @EventHandler public void preInit(FMLPreInitializationEvent event){ rubiOre = new OreRubi(); } @EventHandler public void init(FMLInitializationEvent event){ } } What I need to do? Thanks!
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.