Jump to content

Problem with textures


keten

Recommended Posts

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]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=

Link to comment
Share on other sites

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!

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

Important Information

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