Hunterz you have wrong url for GT version (same link as non GT)
ok, fixed, thanks.
Hunterz you have wrong url for GT version (same link as non GT)
ok, fixed, thanks.
Would there also be a way to add a break block event to some of ic2's machines for 1.6.4?
Basically it is for using mcpc+ and a towny protection system. If the mining laser threw a block break event, a plugin could stop the blocks from being broken.
I had two links where they have already managed to do this and have it working, but it is only for 1.4.7, and 1.5
This is info on the idea Grabbed from the first link below:
Features
Heres the first version: http://www.mcportcentral.co.za…m38vfh22mhd5&topic=5357.0
And here is the second one: http://www.mcportcentral.co.za…m38vfh22mhd5&topic=5593.0
For mining laser i wrote my first serverside mod. It can deny destroy blocks in the protected region and cannot hurt players and animals. Also disable completely explosive mode. Because this mod is very custom for my server, not released to public.
I have been looking for months for a good way to stop player from being able to destroy anything in a town with the mining lazer. I don't suppose you plan to release it do you?
Also the recipe for the 'raw carbon fibre' shows that it requires 3 coal dusts, but it does not work. because nei is actually supposed to show 4 coal dusts and that recipe does work. but the visuals just do not. Anyway you could fix that in your fix mod since they will not ever do an update for 1.6.4 anymore?
IMHO, there is more convenient way to remove broken recipes.
But good job anyway
int counter=0;
List<ItemStack> badItems = asList(
Ic2Items.iridiumDrill,
Ic2Items.mvTransformer,
Ic2Items.weedEx,
Ic2Items.suBattery,
Ic2Items.personalSafe,
Ic2Items.nanoHelmet,
Ic2Items.electricJetpack
// Ic2Items.diamondDrill //no need with GregTech
);
//delete bad recipes
ItemStack recipeResult = null;
ArrayList recipes = (ArrayList) CraftingManager.getInstance().getRecipeList();
for (int i=0; i<recipes.size(); i++){
if(recipes.get(i) instanceof AdvRecipe){
recipeResult = ((IRecipe)recipes.get(i)).getRecipeOutput();
for(ItemStack itm : badItems){
if (ItemStack.areItemStacksEqual(itm, recipeResult)){
recipes.remove(i);
counter++;
break;
}
}
if(counter==badItems.size()){
break;
}
}
}
Display More
The carbon fibre coal dust recipe needs fixing too BTW
The carbon fibre coal dust recipe needs fixing too BTW
I will make new version soon. Thanks for report.
In build 397 (last for 1.6.4) is bugged only diamond drill recipe from yours list. I will add fix asap.
I can't craft MFSU in build 397.
UPD: It require fully charged Crystals.
I will make new version soon. Thanks for report.
Hmm, I dont see carbon fibre coal dust.
Looks like it is not from IC2 mod.
I can't craft MFSU in build 397.
UPD: It require fully charged Crystals.
mfsu recipe looks like works normally.
Hmm, I dont see carbon fibre coal dust.
Looks like it is not from IC2 mod.
It's the 4 coal dust in a square to get raw carbon fibre, which is then compressed to get a carbon plate. NEI says it takes 3 coal dust to make raw carbon fibre, when it actually takes 4.
mfsu recipe looks like works normally.
And it's ok to throw away 60M EU for mfsu craft?
And it's ok to throw away 60M EU for mfsu craft?
Im not developer of IC2. Ask developer of this mod.
Ok, fixed recipe for raw carbon fibre. Also found bad generator recipe
Woop From the source code, I saw you did Nuclear Control but the code was commented out. Any particular reason?
Woop From the source code, I saw you did Nuclear Control but the code was commented out. Any particular reason?
There is broken recipe for remote sensor kit. When I succesfully repair it, then update mod too.
What about booze barrel recipe, or Zero's texture, can you fix those?
Ok barrel fixed and file reuploaded.
Thanks