Jump to content

[1.7.10] Attempting to create a machine


JaselUmena

Recommended Posts

Hello!

 

It's been a while since me and a good friend have started developing our very own minecraft mod for 1.7.10 and, until now, it worked perfectly. We managed to create custom items, material classes, weapons, tools, food with potion effects, ores, ore generation in our world... Mainly almost anyything a mod could need. However, we are stuck now... the reason? We were trying to make a custom "furnace/machine/processor (call it as you wish)" so as we could process our Supernova ore into Supernova blend and then use it in every single recipe in our mod.

 

I know it is a lot easier to add a smelting recipe for a vanilla furnace, but that would not be unique at all... so what we are interested in is a "furnace" that opens a GUI when right clicked, smelts only certain materials (that can not be smelt anywhere else) and uses a custom fuel (we know how to create the custom fuel, so it will not be a lot of trouble).

 

I have faith in you and know you will come up with a ton of good ideas! However, please do not send tutorials, since we have attempted to do most of them and failed miserably because we didn't know what to put in other files that were not the furnace itself.

 

Thank you in advance!

 

Umena.

 

P.S: My friend told me that if we could perhaps get example files of a very basic furnace we might be able to adjust it ourselves.

Link to comment
Share on other sites

TGG's example is for 1.8. The code is meant to be an example and explanation of how things work, not something you can or should just copy and paste into your mod.

 

If you've rewritten the code and are having problems, post the errors and the code itself, otherwise we cannot help.

Don't make mods if you don't know Java.

Check out my website: http://shadowfacts.net

Developer of many mods

Link to comment
Share on other sites

Simply put, all you need is a TileEntity class that your block (as a BlockContainer) provides.*  Take a look at Vanilla's furnace.  Don't worry about how it knows what a recipe is at the moment, you're only concerned with turning your Ore into your Metal (or whatever you want to call it).  So if you mentally replace any reference to the FurnaceRecipes class, you should be able to figure out how much of it works.

 

*You don't have to extend BlockContainer to get a TE, but as you're doing a block that contains items, this is the best/fastest option.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Link to comment
Share on other sites

I had the problem once to, then I wrote a my klooncore, and that works perfectly, just look at my source:

 

https://github.com/KloonTV/Forge-Modding/tree/master/java/de/kloon/klooncore

 

I have the bad feeling you will just copy and paste :P

So my source is not made for copy and paste, and most of the stuff like KloonsCustomRecipeHandler is bad programmed any, but it works

Creator of Extra Shoes

 

Watch out, I'm total jerk, and I'll troll anybody if it feels like its necessary. Pls report me then

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Hello, new coder and first time posting, sorry if I get stuff wrong Been having a really difficult time trying to figure out this potion effect. I want to give a potion effect that denies the wither effect on the player. I've looked over a lot of different tutorials, and through some other mods and made something that sort of works but it was based on applyEffectTick and the players would still take a tick of damage before the potion effect kicked in. When looking up other ways to do this I saw there was like the PotionEvent but whenever I try to use it, I get errors of how it cannot be defined. This is my code right now that doesn't work package io.github.AndroPups.tsmp_models.effect; import net.minecraft.world.effect.MobEffect; import net.minecraft.world.effect.MobEffectCategory; import net.minecraft.world.effect.MobEffects; import net.minecraft.world.entity.LivingEntity; public class NoWitherEffect extends MobEffect { public NoWitherEffect(MobEffectCategory mobEffectCategory, int color) { super(mobEffectCategory.BENEFICIAL, color); } public static void onPotionAdded(PotionEvent.PotionAddedEvent event) { LivingEntity entity = event.getEntityLiving(); MobEffect potionEffect = event.getPotionEffect().getEffect(); if (potionEffect == MobEffects.WITHER); { entity.removeEffect(MobEffects.WITHER); } } @Override public boolean isDurationEffectTick(int duration, int amplifier) { return true; } } And this code works but occasionally still applies damage because of ticking effect.   package io.github.AndroPups.tsmp_models.effect; import net.minecraft.world.effect.MobEffect; import net.minecraft.world.effect.MobEffectCategory; import net.minecraft.world.effect.MobEffects; import net.minecraft.world.entity.LivingEntity; public class NoWitherEffect extends MobEffect { public NoWitherEffect(MobEffectCategory mobEffectCategory, int color) { super(mobEffectCategory.BENEFICIAL, color); } @Override public void applyEffectTick(LivingEntity pLivingEntity, int pAmplifier) { if (!pLivingEntity.level().isClientSide()) { if (pLivingEntity.hasEffect(MobEffects.WITHER)); { pLivingEntity.getEffect(MobEffects.WITHER); } } } @Override public boolean isDurationEffectTick(int duration, int amplifier) { return true; } } I've tried to see if PotionEvent was removed from recent Forge updates but can't really find any information on it. Any information at all would be helpful! Thanks!
    • Right after "private final Item item;" you will need "private final float chance;" Then you will need to add that variable to your constructor the same way you did for Item. It should work after that.
    • I am playing on Mac, tried to install a mod to the Forge mod folder, restarted Minecraft to activate it and now the game is crashing on launch with error code 1. Because I'm on Mac, I can't remotely access the mods folder without having to get into the Minecraft title screen to click the mods tab. Is there any way I can extract the file remotely, or is there a way to uninstall Forge so I can reinstall it with no mods?
    • I don't know how I missed it, but I did. The access transformer file had a capital T in it. Fixed that and the problem has been solved. I feel really stupid, but thank you for asking about that, because it had me rechecking until I finally saw it. I'm marking this solved.
  • Topics

×
×
  • Create New...

Important Information

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