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.

untamemadman

Forge Modder
  • Joined

  • Last visited

Everything posted by untamemadman

  1. I am trying to make a modpack using the Technic platform. They require the use of the universal jar
  2. When trying to use Forge 1.13.2 there is no version.json within the universal jar Is this because of the forge rewrite that is going on and this file is no longer going to be included or is it because the builds are still beta?
  3. I am trying to update my mod from Minecraft 1.8 to 1.10.2 The issue I am having is my mod added a crafting recipe for spawn eggs however in either 1.9 or 1.10 Mojang changed how spawn eggs work, giving them NBT data instead of using damage values. Could anyone help me make this change as I have never used NBT before Example code:
  4. I am trying to setup a Minecraft Forge instance for 1.10.2 however crash on task ':decompileMc' And with --stacktrace Could anyone tell me whats going wrong here and how to fix it. Thanks untamemadman
  5. When I run the command gradlew setupdecompworkspace I get the following error: I got the same thing with both the 1.9.4 mdk and the new 1.10 mdk Could someone help me?
  6. Does anyone know how to make an item available only on certain days f the year? For example: if day = 25/12 then (register crafting recipe) else continue loading the rest of mod
  7. Thank you for your reply, I am having a problem because your tutorial for the spawn egg is throwable. How would I do it normally?
  8. Can anyone give me a link to a tutorial to how to make a mob in minecraft 1.7.10 because I can't find one
  9. I'm not sure why it wasn't working before, but it is working now. thanks for the help anyway
  10. Can someone just give me a chunk of code that will give the user of a peace of armor Night Vision
  11. My code is: @Override public void onArmorTick(World world, EntityPlayer player, ItemStack armor) { if(!world.isRemote) { player.addPotionEffect(new PotionEffect(Potion.nightVision.id, 2, 1, true)); } } But the player still doesn't get night vision
  12. So "if(world.isRemote = false)"
  13. I have this now: @Override public void onArmorTick(World world, EntityPlayer player, ItemStack armor) { if(world.isRemote == true) { player.addPotionEffect(new PotionEffect(Potion.nightVision.id, 2, 1, true)); } } Can you tell me if that is done correctly?
  14. Yes, it is clear. There's a section about what to use instead. Well I was confused by it.
  15. And how would I do that without using "@SideOnly", because your tutorial isn't clear on that
  16. Ok, say I don't use @SideOnly. Why won't my code work still
  17. I understand the difference between Server and Client, but I don't understand what you mean by the alternatives
  18. I made it server side and changed the tick time but it still doesn't work. here is my code: http://goo.gl/XNE7vO
  19. Would it be better to only have it for maybe 10 ticks and it will refresh? Also just checking, I do make it server side using @SideOnly(Server)?
  20. How do I add a potion effect to armor in 1.7.10 I found a tutorial for 1.7.2 that said I just have to add: @Override public void onArmorTick(World world, EntityPlayer player, ItemStack armor) { player.addPotionEffect(new PotionEffect(Potion.nightVision.id, 500, 1, true)); } to my Armor code but it doesn't give the player Night vision when he equip it. any help?
  21. All my code is here: https://github.com/untamemadman/ZombieMod
  22. I didn't copy & paste. just when I typed it in and added my variables it didn't work player.addPotionEffect(new PotionEffect(Potion.fireResistance.id, 500, 1));
  23. I get an Error: java: cannot find symbol symbol: variable player

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.