Jump to content

billabrian6

Members
  • Posts

    12
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Personal Text
    I am new!

billabrian6's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. Fair enough. Thanks for your help! A lot to wrap my head around while trying to learn minecraft modding.
  2. Seems redundant and have to include a lot more in my repo than before.
  3. I have my workspace setup with gradle and would like to have a new project per mod, so I can upload to repo individually. This type of setup is referred to as the "Pahimar" setup. Please provide simple but detailed instructions for achieving this. Thanks in advance!
  4. I can't thank you enough! I had a total retard moment =/ Never thought to click the right mouse...
  5. There is some interesting info there. I will keep it as a reference. Thanks for your help!
  6. I just want the item to do something simple and saw the itemInteractionForEntity() method in a tutorial. Does this still work or has it changed? I'm currently running 964. The item shows up when running, but when hitting an enemy I get no response from the item. Here is my code for that item: package billabrian6.mymod; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.EntityLiving; import net.minecraft.entity.EntityLivingBase; import net.minecraft.entity.monster.EntityCreeper; import net.minecraft.entity.monster.EntityZombie; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; public class MyItem extends Item { public MyItem(int id) { super(id); setMaxStackSize(16); setCreativeTab(CreativeTabs.tabMisc); setUnlocalizedName("myItem"); } @Override public boolean itemInteractionForEntity(ItemStack itemstack, EntityPlayer player, EntityLivingBase target) { player.addChatMessage("Your inside me "); if (!target.worldObj.isRemote) { target.motionY = 2; } return false; } }
  7. This is exactly what I was looking for! Thanks a bunch!!!
  8. I see. Seems overwhelming! I guess scouring through packages and classes it is http://minecraftforge.net/forum/Smileys/default/undecided.gif
  9. I know what Javadoc is. This is the thread I was talking about: http://www.minecraftforge.net/forum/index.php/topic,5793.0.html. It refers to http://jd.minecraftforge.net/ for documentation. I just want to find some documentation. Like what you would find here: http://docs.oracle.com/javase/7/docs/api/. I would also like to be in touch with a veteran modder to get some pointers.
  10. I have already checked the read me first post above! The links for javadoc are broken...Can someone point me to a good place to find some documentation? It's very monotonous looking through all these packages trying to find something that I can use! I have java experience already and just started modding yesterday. If there is any veteran modder that wouldn't mind mentoring me a bit please contact me. I'm tired of programming boring stuff and would like to do something fun http://minecraftforge.net/forum/Smileys/default/angry.gif Also, is there an IRC or something that some of the modders like to hang out and chat?
  11. I was able to resolve on my own through many trial and errors. My advice is to keep attempting it. I moved mine to the root of the c drive and it worked. Mystery...
  12. I'm using forge 953 and running the install script. It fails to download a ton of stuff and then throws this Decompile Exception: 1. I have scoured the internet looking for fixes, but nothing seems to make a difference. Can anyone help with this issue? I'm running Windows 8 and Minecraft 1.6.4 Here is everything from the CMD prompt when running http://pastebin.com/DSWP5V8F
×
×
  • Create New...

Important Information

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