Jump to content

Nitsua_Revaew

Members
  • Posts

    23
  • Joined

  • Last visited

Everything posted by Nitsua_Revaew

  1. then it must have not happened, because there is no difference in the logs than without any mods
  2. Hello, Folks! I installed minecraft forge fully, and it starts up and shows the mods button, but when I drag my mod (terrafirmacraft) into the mod folder (which I've checked, it is the correct folder, it is the right profile) and start the game, nothing happens. It acts just the same as before with the three base mods. It is the correct forge version for the version of the mod. Any help?
  3. I can't edit the crafting manager file, right?
  4. Hello. I have another question. How does one change vanilla recipes? For instance, say i wanted to remove the basic tools and replace them with my own, how would I do that?
  5. How does one make it impossible to place a block off of a specific block? I have a feeling it is .canPlaceBlockOnSide(), but I can't figure out the parameters. Any help?
  6. there we go, I figured it out. i used the are itemStacksEqual(), and didn't come and post every time I had a problem. Oh and by the way, the reason I can't see the source code is for some reason I don't have that src folder visible
  7. unfortunately I can't view any of the source classes.
  8. It says "The method isItemStackEqual(ItemStack) from the type ItemStack is not visible"
  9. I am trying to give a person an item if they right click on a block. I have this: @Override public boolean onBlockActivated(World par1World, int x, int y, int z, EntityPlayer par5EntityPlayer, int par6, float par7, float par8, float par9) { ItemStack heldItem = par5EntityPlayer.inventory.getCurrentItem(); ItemStack CDOrb = new ItemStack(MagicksMod.CDiamondOrb, 1); if (heldItem == new ItemStack(MagicksMod.CDiamondOrb, 1)){ par5EntityPlayer.inventory.addItemStackToInventory(new ItemStack(Items.diamond)); } return false; } But it doesn't work. What am I doing wrong? PS It doesn't have any error, it just doesn't do anything.
  10. At the very top of the page it says "In some cases the information might still apply but in most cases you will run into problems."
  11. Ah. I fixed it by replacing it with new ItemStack(Items.bucket, heldItem.stackSize-1). Thank you!
  12. Thank you, this really helped a lot. However, I have one question. What is performed in the ItemUtils.comsumeItem(heldItem)? I do not have that package.
  13. In the eclipse package explorer, I go to minecraft, referenced libraries, and then it's not there.
  14. Wow, thanks. I said I can't find any tutorials, and you tell me to look for tutorials? That helped a whole lot. No, the ones on the wiki are all outdated, and google yields no results.
  15. Hello. I have a problem. Under the referenced libraries tab in eclipse, I have no forge src files. As such, I cannot look through code and learn from it. Everything still works fine though. Any thoughts?
  16. Okay, I know this is probably pretty basic, but I can' find a tutorial anywhere. How does one go about creating a block with a gui, like a furnace? Thanks!
  17. Hello everybody! I'm new to modding, and I have some questions. First of all, how does one create a block that can interact with a bucket? I'm trying to creat a block that when right clicked on with a bucket, it fills the bucket like a water source block. However, i don't want this block to dissapear. Does anybody know how to go about doing this? Help would be much appreciated. Thanks!
×
×
  • Create New...

Important Information

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