Jump to content

Texasjake95

Members
  • Posts

    153
  • Joined

  • Last visited

Everything posted by Texasjake95

  1. When you are using the function MinecraftForge.setToolClass does the item need to extend but to you are registering it as? for example can i register an item that extends ItemSword as a pickaxe? And can i resister multiple classes for one item like a pickaxe/shovel?
  2. could you link it, or is it in the tutorials section, i need a good metadata tutorial They are found here: http://www.minecraftforge.net/forum/index.php/topic,614.msg4490.html#msg4490
  3. try it like this (shows an example for all armor) the 6 needs to be different every time and could go as low as 5
  4. @mod class, Item Block class, Naming class? Go look at Helfull's Tutorials. There one for Block with Metadata its for 1.2.5 but also works for 1.3.2
  5. Look at the IronChest mod on GitHub
  6. Being honest I don't even know if its the right hooks for it... Its all in the ForgeHooks class dealing with grass and seeds but I dont see how i can use it...
  7. Found it but no idea on how to use it...
  8. K I'll go looking!
  9. the things that drop seeds
  10. How would you handle generating things like grass?
  11. Got it working now!
  12. what do i do with the IChunkProvider chunkGenerator, IChunkProvider chunkProvider?
  13. I believe they go to .minecraft-> lib
  14. What function is need for world gen to work? I can't seem to find it...
  15. It would be nice if we could have our items in multiple tabs to like a tab for our mod and also have all of our items in the appropriate tabs already created
  16. That is for 1.3.1 for MODDERS only
  17. Try this: public void addCreativeItems(ArrayList itemList) { itemList.add(new ItemStack(this)); } Use it in every Block/Item class that you want in the Creative mode inventory Here is an example from my mod:
  18. You could have gone to the Releases page found here": http://minecraftforge.net/forum/index.php/topic,5.0.html and looked for yourself
  19. Alright I'll look for it
  20. Is there a way that when an item (i.e. a tool) breaks that a different item is added to the inventory in its place?
  21. It looks like you have an extra ) just before blockname and try looking at Helfull's tutorials
  22. Try it with just forge ModLoader and ModLoaderMP are not needed
  23. If you can figure this out please let me know!
  24. Got it working... Now just need to find a good tut for making my mod go server side...
×
×
  • Create New...

Important Information

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