Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

billabrian6

Members
  • Joined

  • Last visited

  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

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.