Jump to content

Dragonmasterk

Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by Dragonmasterk

  1. WOW! I feel so dumb right now. I should of proof read my mod id paths and such before posting. Thanks for the help :D
  2. Hello, I am getting back into coding for Minecraft and I was following a tutorial series, however my textures are not getting recognized. This is what appears even I load Minecraft: [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: The following texture errors were found. [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: DOMAIN tickerarmoraddon [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: -------------------------------------------------- [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: domain tickerarmoraddon is missing 6 textures [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: domain tickerarmoraddon is missing a resource manager - it is probably a side-effect of automatic texture processing [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: The missing resources for domain tickerarmoraddon are: [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/RedstonePickaxe.png [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/RedstoneHoe.png [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/RedstoneAxe.png [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/RedstoneSword.png [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: textures/items/RedstoneShovel.png [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: textures/blocks/RedRuby.png [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: ------------------------- [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: No other errors exist for domain tickerarmoraddon [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: ================================================== [17:23:09] [Client thread/ERROR] [TEXTURE ERRORS]: +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= [17:23:38] [Client thread/INFO]: Stopping! This is how my files are set up: [/img] And my code for setting the texture looks like this: [code]RubyBlock = new RubyBlock(Material.rock).setBlockName("RubyBlock").setBlockTextureName(Constants.MODID+":RedRuby").setCreativeTab(CreativeTabs.tabBlock); RedstonePickaxe = new RedstonePickaxe(Redstone).setUnlocalizedName("RedstonePickaxe").setTextureName(Constants.MODID+":RedstonePickaxe").setCreativeTab(CreativeTabs.tabCombat); RedstoneSword = new RedstoneSword(Redstone).setUnlocalizedName("RedstoneSword").setTextureName(Constants.MODID+":RedstoneSword").setCreativeTab(CreativeTabs.tabCombat); RedstoneAxe = new RedstoneAxe(Redstone).setUnlocalizedName("RedstoneAxe").setTextureName(Constants.MODID+":RedstoneAxe").setCreativeTab(CreativeTabs.tabCombat); RedstoneShovel = new RedstoneShovel(Redstone).setUnlocalizedName("RedstoneShovel").setTextureName(Constants.MODID+":RedstoneShovel").setCreativeTab(CreativeTabs.tabCombat); RedstoneHoe = new RedstoneHoe(Redstone).setUnlocalizedName("RedstoneHoe").setTextureName(Constants.MODID+":RedstoneHoe").setCreativeTab(CreativeTabs.tabCombat); I do not understand why i cannot find the domain for my textures. As far as I can see it should work. If anyone can help me, it would be much appreciated.
  3. Thank you. it worked. I guess it couldn't call the assets. Should of saw it. But thank you very much for the help. Now I can start making my first mod.
  4. Hey, I've been trying to set up forge with Eclipse and I had no problems until I tried to run the client. This is the error I get everytime: [14:25:36] [main/INFO] [GradleStart]: assetsDir: eclipse/assets [14:25:36] [main/INFO] [GradleStart]: accessToken: whatever [14:25:36] [main/INFO] [GradleStart]: version: 1.7.10 [14:25:36] [main/INFO] [GradleStart]: tweakClass: cpw.mods.fml.common.launcher.FMLTweaker [14:25:36] [main/INFO] [GradleStart]: username: Dragonmasterk [14:25:36] [main/INFO] [GradleStart]: Extra: [] Exception in thread "main" java.lang.RuntimeException: java.io.FileNotFoundException: eclipse\assets\indexes\1.7.10.json (The system cannot find the path specified) at com.google.common.base.Throwables.propagate(Throwables.java:160) at GradleStart.setupAssets(GradleStart.java:257) at GradleStart.startClient(GradleStart.java:82) at GradleStart.main(GradleStart.java:66) Caused by: java.io.FileNotFoundException: eclipse\assets\indexes\1.7.10.json (The system cannot find the path specified) at java.io.FileInputStream.open(Native Method) at java.io.FileInputStream.<init>(Unknown Source) at java.io.FileReader.<init>(Unknown Source) at GradleStart.loadAssetsIndex(GradleStart.java:263) at GradleStart.setupAssets(GradleStart.java:201) ... 2 more Java HotSpot(TM) 64-Bit Server VM warning: Using incremental CMS is deprecated and will likely be removed in a future release Any help would be helpful. Thanks in advance, Dragon
×
×
  • Create New...

Important Information

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