Jump to content

Mr.sKrabs

Members
  • Posts

    89
  • Joined

  • Last visited

Everything posted by Mr.sKrabs

  1. https://gist.github.com/anonymous/13697d9935155d96e2b1 This is the BlockCampfire This is the Blocks https://gist.github.com/anonymous/b529351cb1ee9d452a33 First off texture gone Purple and black, second when i feed it fuel and an item it turns into a furnace and in the code itself I dont see a reason.
  2. What part of I tried but it didn't work,didn't you understand?
  3. When I said I want I meant I do want it but I dont know how to do it. I already tried doing it by extending BlockFurnace,but one problem we'll I wanted to do custom slots inside the campfire and I dont know how, plus for some reason after I launched the game successfuly for some reason it did act fully as a furnace it even said "furnace" but for some reason the campfire lost its texture
  4. I want to make it like a furnace if you put fuel inside it wil generate body heat aswell as light and you can cook on it I know its a lot requests but i know its more then possible and I am willing to sit on my ass all day!
  5. I see it now too Got it to work thanks bro . Can you tell me how to do a fire effect on the campfire?
  6. To let you understand what I meant: http://prntscr.com/7yvc7j I know I coded these blocks as well full cubed blocks and thus you can see through it. What i dont know is how to fix it..Maybe if i make them slabs figures?. And how do I make for the campfire fire effect Plus when I destroy the cotton plant I did an item drop of a cotton,But one problem it returns the block aswell,People can just farm it by spawning and destroying. How can I make it so you WONT recieve the block once you destroy it?
  7. I love you so much!!! You've helped me alot Works!. I made another event for this class in my main class and it worked! Please lock this topic and i hope if anyone is wandering how to do it here is the solution
  8. Thank you so much!!! Now i'm kinda new but I want to make as i said wood unpunchable I sort of understood i need to do it with events,can you guide me step by step what to do? its my first time changing vanilla block.
  9. https://gist.github.com/anonymous/d59c420d827ee09bfca0
  10. Oh i didn't remember i mistakely removed it Still i do not receive the twigs from the leaves
  11. https://gist.github.com/anonymous/aece7960622d4d8ee76c
  12. Update: Main file: https://gist.github.com/anonymous/f63dd1916f1a3c1f4274 HNEventHandler: https://gist.github.com/anonymous/dd55a611845a1298bbcd Crash Report: https://gist.github.com/anonymous/850216c9641636c6769d
  13. package com.drunksmanknife.harshnature; import com.drunksmanknife.harshnature.init.HarshNatureItems; import net.minecraft.init.Blocks; import net.minecraft.init.Items; import net.minecraft.item.ItemStack; import net.minecraft.util.EnumChatFormatting; import net.minecraftforge.event.world.BlockEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; public class HNEventHandler { @SubscribeEvent public void onBlockDropItems(BlockEvent.HarvestDropsEvent event) { if (event.state == Blocks.leaves) { ItemStack stack = new ItemStack(HarshNatureItems.Twigs, 2); event.drops.add(stack); } } } crashes my minecraft when i try to load it https://gist.github.com/anonymous/983603b5a7a0ecb5d4a0
  14. Okay,I successfuly did the Event Handler thing, now i need to write the line of code that makes the wood not give items. Now I have a question i need the exact same handler Forge for another thing,I want to make so it drops twigs from leaves and so i need to use an event I've tried this but I only got error in the if event.block https://gist.github.com/anonymous/2fb367a5f8f97cfbbf50 My question is do i need to make multiple event handlers?.
  15. Okay in my case I need the most used Event handler? MinecraftForge.EVENT_BUS?
  16. In the vanilla class? i do not want to overwrite plus it protected,and i do not know what the heck to write what class to create i am new to modding and simply telling me what to do makes me understand but wont let me in anyway make me know what to do writing-wise,creating-wise
  17. I've been going around attemping to make wood unbreakable by hand unless you have some sort of the basics axe including wood. Its around 10 hours on the subject and my brain is exploading,I've hoped some of you guys can help me figure out how to do it. and guide me
  18. Dude you are acting like im some sort of a retard. I have the basic of the basic,I already understood the problem,my own problem is that even if i figure out a problem i just dont know what the fuck to write. There is so many that i dont know what to do. You guys knowing better then me doesn't mean you need to be a show off,if you think i only did this to solve my own problem then no. When i tried looking for a solution for this problem i searched the whole internet and found only one solution about the subject and it wasn't good. I am doing this also for guys like me who can't find an answer then here is one Thank you for helping me and next time be more sensitive
  19. I think i understood its like sort of reference,instead of writing the whole thing you could just reference it. Problem i dont know what the hell to write i understood the problem and that are many ways to fix it,can you give me a simple one.
  20. Last time I made a minecraft mod was in 1.4.4 around 2 years ago..and in ModLoader. I knew basics of Java no more. I came here to learn. How can i fix the parameter to support more.
  21. Can you post the fixed lines?
  22. Read in order: 1.http://pastebin.com/gvjwUScB 2.http://pastebin.com/K3BBfxki 3.http://pastebin.com/arZanRcv 4.http://pastebin.com/wKkYtw71 - Returned this back to normal cause i received errors. 5.I assume you dont need commonproxy.
  23. I am modding a mod in minecraft,all i want is the code to FIX the problem I created. I'll know exactly what i did wrong if you are nice enough to write the lines
×
×
  • Create New...

Important Information

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