Kudos on once again getting Nether Ores compatible with IC2. Was missing that integration feature,
Rollback Post to RevisionRollBack
Currently seeking contributors for a massive Wiki project @ http://minecraftuniverse.wikia.com The aim is to cover in-depth as many mods as possible, right down to Blocks, Items, and Crafting Recipes.
any way to change the crafting recipe for MFRL steel? It conflicts with Universal electricity steel and makes this and any form of UE mod not really compatible.
Plasticcraft was sort of pointless to start with, it existed only for itself. I wont take it up.
UE is a lot younger than MFR, so if someone changes recipes, he will
Thats because until yesterday, there was no Buildcraft release for anything past 1.3.2 and IC2 is still in open beta for 1.4.5. Plus, i need to rewrite PC a little because the Liquids API is now in Forge and stuff.
I hope you don't mind me following this thread out of idle curiosity (until I inevitably get bored), but man, the stories I could tell you of trying to get the liquids to work the first time...
Hey AtomicStryker I can't seem to get the power converters mod to work in my minecraft 1.3.2 modded world. I use MultiMC to lauch it and after I added Powerconverters1.3.2 to the mods folder and started minecraft, it gave me a java.lang.NoSuchMethodError. What is going on here and how can I fix this?
I have the correct Buildcraft installed along with the correct IC2 so I don't have any idea what is happening.
Actually i read your crash log again, closer this time. It looks to me like you do not have the new Forgedirection / Liquid API in the newest versions.
EDIT #2
Build 395? How odd, thats the one i coded against ... you have a buildcraft API problem something something. Best go through your mods, delete any buildcraft API found in them, and use buildcraft itself.
Am I correct in assuming the water filter doesn't require buckets to make EU, that I can just pump it in with pipes? The descriptions are a bit ambiguous in this regard.
The Meaning of Life, the Universe, and Everything.
Join Date:
4/3/2012
Posts:
52
Minecraft:
Zarkazm
Xbox:
Zarkazm
Member Details
Hey AtomicStryker, got a question for you. I've got a "hyrdo-flower" set up (water strainers + MFE + BC Pump + Energy Link) and i'm getting this error every few seconds in my server console:
[WARNING] [IC2] API ERROR: atomicstryker.powerconverters.com [email protected] didn't implement demandsEnergy() properly, no
energy from injectEnergy accepted although demandsEnergy() returned true.
Helpful info I can think to give:
Minecraft Version 1.4.5
MCForge Version 6.4.0.396
BC3 Version 3.2.0
IC2 Version 1.109.113
Power Converters Version 1.4.4
@Override
public boolean demandsEnergy()
{
return storedEnergy < maxStoredEnergy;
}
@Override
public int injectEnergy(Direction directionFrom, int amount)
{
int amountToAdd = Math.min(amount, maxStoredEnergy - storedEnergy);
storedEnergy += amountToAdd;
return amount - amountToAdd;
}
Looks good to me. You probably have some sort of fringe case where the water strainers continue to try and inject energy AFTER its full
If that message is a major issue to you i could make it "waste" one EU instead of causing that message, though i dont know how much power loss that would induce
UE is a lot younger than MFR, so if someone changes recipes, he will
My .minecraft folder with FML installed
The mod folder
[Edit] I realize that the page says to "read the directions," but I can't find any specific installation directions.
I hope you don't mind me following this thread out of idle curiosity (until I inevitably get bored), but man, the stories I could tell you of trying to get the liquids to work the first time...
INFORMATION WANTS TO BE WRONG
I'll for sure be downloading this!
If there isnt any instructions, you just drop the file you downloaded into /mods/
I have the correct Buildcraft installed along with the correct IC2 so I don't have any idea what is happening.
Crash report: http://paste.ubuntu.com/1384224/
@Souske why not
Can you please add it to the OP? I'd be thankful
wirelessredstone.block.BlockRedstoneWirelessR.onBlockRedstoneWirelessNeighborChange(BlockRedstoneWirelessR.java:128
And then redetermine who to go to with that crash log
Give him this link
http://code.google.c...FactoryReloaded
EDIT:
Actually i read your crash log again, closer this time. It looks to me like you do not have the new Forgedirection / Liquid API in the newest versions.
EDIT #2
Build 395? How odd, thats the one i coded against ... you have a buildcraft API problem something something. Best go through your mods, delete any buildcraft API found in them, and use buildcraft itself.
[WARNING] [IC2] API ERROR: atomicstryker.powerconverters.com
[email protected] didn't implement demandsEnergy() properly, no
energy from injectEnergy accepted although demandsEnergy() returned true.
Helpful info I can think to give:
Minecraft Version 1.4.5
MCForge Version 6.4.0.396
BC3 Version 3.2.0
IC2 Version 1.109.113
Power Converters Version 1.4.4
Thanks!
Looks good to me. You probably have some sort of fringe case where the water strainers continue to try and inject energy AFTER its full
If that message is a major issue to you i could make it "waste" one EU instead of causing that message, though i dont know how much power loss that would induce