Jump to content

thomasgroves100

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by thomasgroves100

  1. DireWolf20 is amazing he does not have enough subscribers for the top quality videos he does .
  2. i just to say what a great community we have here on the technic website everyone is allways willing to help each other ut and no one is scared to sare there views or creations from minecraft to coding hounstly what im getting at is everyone on this forum who is sharing views or helping others well you are amazing :-)
  3. omg hounestly you are the best some fine peice of work you made there i give you gold medal :)
  4. In-Game Name: thomasgroves100 Age: 12 Experience with Tekkit: loved tekkit ever since it came out and know a lot about the mods Did you read the rules?:yes
  5. Minecraft name:thomasgroves100 Age:12 Location: England What do you plan todo on our server: build a factory that will cover all the mods and set up a shop using ic2 tradeomats
  6. this looks cool just downloaded it but next time if your doing a version of someone else's map mention there inspiration but call it something else
  7. hey guys its me i just want to say thank you to all who posted thanks to all of you and your constant help and support i have finally been able to fix the error and make my first step into the modding world thank you :-)
  8. ok thanks i appreciate your time
  9. no the code only says this package net.minecraft.src; public abstract class mod_Test extends BaseMod { public static Block Test= new BlockTest(126, 1).setHardness(1.0F).setBlockName("Test"); public String Version() { return "1.7.3"; } public void load (){}; { ModLoader.registerBlock(Test); Test.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/copper.png"); ModLoader.addName(Test, "Test"); ModLoader.addRecipe(new ItemStack(Test, 1), new Object[]{ "dd", "dd", Character.valueOf('d'), Block.dirt}); } }
  10. that's just made the console say 27 achievements 183 recipes LWJGL Version: 2.4.2 Exception in thread "Minecraft main thread" java.lang.Error: Unresolved compilation problem: The method load() is undefined for the type BaseMod at net.minecraft.src.ModLoader.init(ModLoader.java:856) at net.minecraft.src.ModLoader.addAllRenderers(ModLoader.java:157) at net.minecraft.src.RenderManager.<init>(RenderManager.java:85) at net.minecraft.src.RenderManager.<clinit>(RenderManager.java:12) at net.minecraft.client.Minecraft.startGame(Minecraft.java:424) at net.minecraft.client.Minecraft.run(Minecraft.java:786) at java.lang.Thread.run(Thread.java:722) as i say i'm new to modding but i want to give it a try i really do appresiate everyone's time.
  11. well i did the code like this package net.minecraft.src; public abstract class mod_Test extends BaseMod { public static Block Test= new BlockTest(126, 1).setHardness(1.0F).setBlockName("Test"); public String Version() { return "1.7.3"; } { BaseMod load = load(); } public mod_Test() { ModLoader.registerBlock(Test); Test.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/copper.png"); ModLoader.addName(Test, "Test"); ModLoader.addRecipe(new ItemStack(Test, 1), new Object[]{ "dd", "dd", Character.valueOf('d'), Block.dirt}); } } but it came up with this error Mods loaded: 1 ModLoader 1.2.5 Minecraft has crashed! ---------------------- Minecraft has stopped running because it encountered a problem. --- BEGIN ERROR REPORT 9f578458 -------- Generated 08/06/12 10:01 Minecraft: Minecraft 1.2.5 OS: Windows Vista (x86) version 6.0 Java: 1.7.0_03, Oracle Corporation VM: Java HotSpot Client VM (mixed mode), Oracle Corporation LWJGL: 2.4.2 OpenGL: ATI Radeon HD 4870 version 2.1.8543 Release, ATI Technologies Inc. java.lang.InstantiationException at sun.reflect.InstantiationExceptionConstructorAccessorImpl.newInstance(InstantiationExceptionConstructorAccessorImpl.java:48) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at java.lang.Class.newInstance0(Class.java:372) at java.lang.Class.newInstance(Class.java:325) at net.minecraft.src.ModLoader.addMod(ModLoader.java:287) at net.minecraft.src.ModLoader.readFromClassPath(ModLoader.java:1279) at net.minecraft.src.ModLoader.init(ModLoader.java:849) at net.minecraft.src.ModLoader.addAllRenderers(ModLoader.java:157) at net.minecraft.src.RenderManager.<init>(RenderManager.java:85) at net.minecraft.src.RenderManager.<clinit>(RenderManager.java:12) at net.minecraft.client.Minecraft.startGame(Minecraft.java:424) at net.minecraft.client.Minecraft.run(Minecraft.java:786) at java.lang.Thread.run(Thread.java:722) --- END ERROR REPORT dc5872f7 ----------
  12. yeah i use eclipse i says i have no errors but what do you mean by a load() member function.
  13. sorry will use that next it is giving me this error Mods loaded: 1 ModLoader 1.2.5 Minecraft has crashed! ---------------------- Minecraft has stopped running because it encountered a problem. --- BEGIN ERROR REPORT 9f578458 -------- Generated 07/06/12 23:05 Minecraft: Minecraft 1.2.5 OS: Windows Vista (x86) version 6.0 Java: 1.7.0_03, Oracle Corporation VM: Java HotSpot Client VM (mixed mode), Oracle Corporation LWJGL: 2.4.2 OpenGL: ATI Radeon HD 4870 version 2.1.8543 Release, ATI Technologies Inc. java.lang.InstantiationException at sun.reflect.InstantiationExceptionConstructorAccessorImpl.newInstance(InstantiationExceptionConstructorAccessorImpl.java:48) at java.lang.reflect.Constructor.newInstance(Constructor.java:525) at java.lang.Class.newInstance0(Class.java:372) at java.lang.Class.newInstance(Class.java:325) at net.minecraft.src.ModLoader.addMod(ModLoader.java:287) at net.minecraft.src.ModLoader.readFromClassPath(ModLoader.java:1279) at net.minecraft.src.ModLoader.init(ModLoader.java:849) at net.minecraft.src.ModLoader.addAllRenderers(ModLoader.java:157) at net.minecraft.src.RenderManager.<init>(RenderManager.java:85) at net.minecraft.src.RenderManager.<clinit>(RenderManager.java:12) at net.minecraft.client.Minecraft.startGame(Minecraft.java:424) at net.minecraft.client.Minecraft.run(Minecraft.java:786) at java.lang.Thread.run(Thread.java:722) --- END ERROR REPORT 636c3076 ----------
  14. can someone please tell me what's wrong with this code. package net.minecraft.src; public abstract class mod_Test extends BaseMod { public static Block Test= new BlockTest(126, 1).setHardness(1.0F).setResistance(5.0F).setLightValue(1.0F).setBlockName("Test"); public String Version() { return "1.2.5"; } public mod_Test() { ModLoader.registerBlock(Test); Test.blockIndexInTexture = ModLoader.addOverride("/terrain.png", "/copper.png"); ModLoader.addName(Test, "Test"); ModLoader.addRecipe(new ItemStack(Test, 1), new Object[]{ "##", "##", Character.valueOf('#'), Block.dirt}); } }
  15. hey guys just saying that the Technic launcher is awesome and does anyone know how long it took to make
  16. i dont know weather or not you can do anything about this but when you use a jetpack and even feather the landing you take damage lease may you tell the ic2 mod maker to try to fix this
×
×
  • Create New...