Posts by LinusPhoenix
-
-
Did you actually manage to contact him?
-
Actually...
Con-spi-ra-cy
4 syllables. There, your argument is invalid.
DIABLO 4 CONFIRMED
-
^ Try that first if possible, since I think that's a common problem that got solved
In future cases, you can find the logs here:
by default:
C:\Users\YourUsername\AppData\Roaming\.minecraft
or in your FTB Modpack folder.The files are called ForgeModLoader-client-0.log, ForgeModLoader-client-1.log etc.
-
Could you post your forge logs?
-
Pretty sure RC is the primary steam mod. Factorization Solar Boilers also make steam, but I think that's it.
There's a FluidRegistry. Works similarly to the oredict, which is why GT oil/diesel will burn in everything that takes BC oil/fuel.
(recipe)
This makes one cable. Have you not updated GT and ic2 in your dev environment? Might be a good idea to do so, due to a lot of recipe/item changes in recent GT.FZ...hm...
Well the FluidRegistry is sadly not as intuitive to use as the OreDictionary and I haven't really concerned myself with Maps yet, but I see how it is possible to look for a steam fluid that's registered.About the recipe: I follow GT changes mostly (and IC2 changes a bit) but it didn't change anything yet that was of my concern. I'll most likely update when I got spare time (which will not be next month), because then I'll also start updating Advanced Reactors (which needs a new workspace anyways) Thank you for the recipe though.
Now I need to update anyways to the new API. -
Seems like a really good way to open other recipes for the use of infused Gold too. Suggestion accepted
Also, which mods add Steam and what are their modIDs (if there are any besides GT and RC)?
Also, why is there no FluidDictionary?EDIT: also, what is the new fibre glass recipe? Xx
-
If you volunteer to update them everytime, sure, go ahead
-
And it would also bring the dense plates to a good use, I'll do it that way and substitue the plate in machine recipes as well.
-
I'll look into better viability in the future.
-
It's not meant to be worth, it's meant to be convenient and for people with lots of gold or infused gold.
-
I pushed the new unidye version so you can update it this week, if you want to. Proxy bug should be fixed
-
Code
Display Morepublic static void isIC2Installed() { if(Loader.isModLoaded("IC2")) { try { LogHelper.log(Level.INFO, "IC2 integration initialised"); ItemStack energyCrystal = Items.getItem("energyCrystal"); ItemStack lapotronCrystal = Items.getItem("lapotronCrystal"); ItemStack advancedCircuit = Items.getItem("advancedCircuit"); ItemStack lapiDust = Items.getItem("lapiDust"); ItemStack bronzeIngot = Items.getItem("bronzeIngot"); CraftingManager.getInstance().getRecipeList().add(new ShapedOreRecipe((energyCrystal), new Object[] { "RRR", "RSR", "RRR", Character.valueOf('R'), Item.redstone, Character.valueOf('S'), new ItemStack(AddedCompat.metaItemCompat,1,0) })); CraftingManager.getInstance().getRecipeList().add(new ShapedOreRecipe((lapotronCrystal), new Object[] { "LAL", "LRL", "LAL", Character.valueOf('R'), new ItemStack(AddedCompat.metaItemCompat,1,1), Character.valueOf('A'), advancedCircuit, Character.valueOf('L'), lapiDust })); CraftingManagerTable.getInstance().getRecipeList().add(new ShapelessOreRecipe((bronzeIngot), new Object[] { Block.cobblestone, Item.ingotIron })); CraftingManagerTable.getInstance().getRecipeList().add(new ShapelessOreRecipe(new ItemStack(Item.ingotIron), new Object[] { Block.cobblestone, bronzeIngot })); } catch(Exception e) { LogHelper.log(Level.INFO, "IC2 integration not initialised"); e.printStackTrace(System.err); } }else{ } }}
What exactly does not work?
Also, why are you adding recipes directly to the list? Use GameRegistry.addRecipe(new ShapedOreRecipe(lots of parameters)) or GameRegistry.addRecipe(new ShapelessOreRecipe(lots of parameters)), since that is the official way to do it. Also, by using ShapedOreRecipe and ShapelessOreRecipe you can just enter strings as inputs and they get matched to the OreDict-registrated items of this string. Another problem could be that you don't actually call this method ever. -
.....Origin has sales?
I usually really wanted to play it, but EA just pisses me off so much I am not buying their games anymore (also, I really would have liked ME3 on Steam)
-
...Could you format that correctly?
-
Kinda sick of all the people who come here, rant about GT without contributing to any kind of dialogue, and then expect help from the users. If you want help, be nice, don't force your opinion down our throats.
You could try this, although it just has been released and may contain bugs, but immibis is eagerly bugfixing as it seems.
-
At least with GT. Well then, I'll need to find the hook in the Forestry API. There should be IMC things to get other mods items, that would be great.
Oh, there's something in GameRegistry..nice..
By the way, planned for the next update is a config option for every Crystalliser Recipeedit: oh, this is post 500!
-
If forestry has a hook to get its items. Last time I checked, I couldn't find one =/
-
The apatite gem in BoP is used decoratively or for some kind of teleport device. That doesn't sounds like something that should be in the Crystallizer. Does Forestry register it?
-
Do you have a way to enable OreDict tooltips in NEI?