Jump to content

LexManos

Forge Code God
  • Posts

    9273
  • Joined

  • Last visited

  • Days Won

    68

Everything posted by LexManos

  1. That is useless, Sending me the same patch file I generated doesnt help.. at all..
  2. Shoot me your MultiMC instance, so I can see if I can reproduce.
  3. declarations != instantiations, lrn2java plz.
  4. Well, a temporary work around, try renaming the transformer file to a lowercase t.
  5. The line of code is this: ModLoader.addShapelessRecipe(new kp(powerPipeHV), new Object[] { (id)Class.forName(new StringBuilder().append(instance.getClass().getPackage() != null ? new StringBuilder().append(instance.getClass().getPackage() .getName()).append(".").toString() : "").append("BuildCraftTransport") .toString()).getField("pipePowerWood").get(null), getIC2Item("advancedCircuit") }); Which is the most fuckedup/retarded thing I have ever seen. It isn't changing any properties, it's trying to get pipePowerWood. Anyways, it looks like the issue is that it isn't being sorted properly. The fact that this is server side and you say it works in 108.. tells me either you're lying or something is severely fucked up on your side. As the sorting code for the server has not been touched since before 108 I'll look into it more when i get a chance to talk to CPW.
  6. Got a link to the mod so i can take a look?
  7. That log you posted has nothing to do with compact solars.. its transformers making a invalid shapeless recipe... I don't see anything FML/Forge related here.
  8. Please keep UE talk onto the UE sub-forum. And You don't have to jump at everyone who posts something about electricity with your advertisement If you do, do it via pms plz. To keep the discussion on topic.
  9. Humm.. shouldn't happen, and doesn't happen to me using all those mods. But try #131
  10. Ya I dont plan on doing anything major untill my new HDD arrives and it doesn't take 45 mins to setup MCP u.u And won't do any actual work till after the next Forge release.
  11. Scott, and chance you could get me a proper diff of what exactly Robinton does for his '4096 fix'? AE: Generate a patch between clean MC and his fix, should get you something like: https://dl.dropbox.com/u/28221422/4096.patch
  12. Ya.. don't see why this would be nessasary, you shouldn't be screwing around with gui's that arnt yours. And if you really need to there is other ways to do it. This is a untouched base class as is, I typically need really compelling reasons to add in new base class edits. Esp GuiScreen cuz IIRC GuiAPI edits it, and we'd conflict.
  13. Not the way you think, definitly not with that exact code. But, you could setup TileEntities to hold any extra data you may need.
  14. It'd help if you gave build numbers, as that is the important number. Also, just a wild guess {which is the best i can do without a build} i'd say you just didn't install everything properly, or you have something conflicting.
  15. 256 -.- Stop asking stupid questions and try doing the research yourself.
  16. Perhaps, look in the ... redpower folder! Its not exactly hard... If you get stuck go read the readme for the mods you are using -.-
  17. You configure the block ids in each mod's configuration file...
  18. Get rid of 4096, and fix your block ids.
  19. Haven't used MagicLauncher for a while, but, there should usually be a console window or something when you try to run the game. Dig around in it.
  20. They don't, but Forge does, and if you want extra features, Optifine. There is NO reason to use MCPatcher.
  21. You may wanna checkout build 127, and this: package net.minecraft.src; import net.minecraft.src.forge.NetworkMod; import net.minecraft.src.forge.oredict.OreDictionary; import net.minecraft.src.forge.oredict.ShapedOreRecipe; import net.minecraft.src.forge.oredict.ShapelessOreRecipe; public class mod_OreDictTest extends NetworkMod { @Override public String getVersion() { return "Boo!"; } @Override public void load() { CraftingManager.getInstance().getRecipeList().add(new ShapelessOreRecipe(Block.dirt, "test", "test")); CraftingManager.getInstance().getRecipeList().add(new ShapedOreRecipe(Item.pickaxeDiamond, new String[]{"XXX", " # ", " # "}, '#', Item.stick, 'X', "test")); CraftingManager.getInstance().getRecipeList().add(new ShapedOreRecipe(Item.pickaxeDiamond, "XXX", " # ", " # ", '#', Block.dirt, 'X', "test")); OreDictionary.registerOre("test", new Item(31001).setIconIndex(1).setItemName("Test1")); OreDictionary.registerOre("test", new Item(31002).setIconIndex(2).setItemName("Test2")); } }
  22. I advise a wonderful program called 7zip for installing Mods, or MultiMC, or MagicLauncher, or the plethora of other ways to install mods properly. MCPatcher does some horrible things even if you disable all of it's internal mods it will edit some classes for itself causing error. Due to this... behavior, we do not support it in any way. It is a good concept, but, needs to work better.
  23. 1) You're using MCPatcher, that isnt supported nore does it work. 2) You're not posting the error log, cuz there is always a error log. Unless there is a major hardware issue with your computer that has nothing to do with Forge. There is always a log.
×
×
  • Create New...

Important Information

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