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.

Featured Replies

Posted

Hello! I wanted to make tnt ignite when you punch/destroy it (Just like in the beta days). Couldn't get it to work though :L

Does someone have any idea why this doesn't spawn anything?

----------------------------------------------------------------------------------------------------------------

@Mod(modid = ExampleModThree.MODID, version = ExampleModThree.VERSION)
public class ExampleModThree
{
    public static final String MODID = "examplemod3";
    public static final String VERSION = "1.0";
    public static Entity EntityTNTPrimed;
    
@Mod.EventHandler
public void preInit(FMLPreInitializationEvent event) {
    
MinecraftForge.EVENT_BUS.register(this);
}

@SubscribeEvent
public void onBreakEvent(BlockEvent.BreakEvent event)
{
  if (event.world.isRemote) {
  return;
  }
  Block block = event.block;

  if (block == Blocks.tnt)
  {
  event.world.spawnEntityInWorld(EntityTNTPrimed);
  }
}
}

Edited by Ghten

What version of Minecraft are you working with? 

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • Author
1 minute ago, Draco18s said:

What version of Minecraft are you working with? 

1.10

EntityTNTPrimed is a class. You need to create an instance of that class and spawn it, you can't just spawn a class. What IDE are you using that didn't show that error?

Whatever Minecraft needs, it is most likely not yet another tool tier.

  • Author
2 minutes ago, IceMetalPunk said:

EntityTNTPrimed is a class. You need to create an instance of that class and spawn it, you can't just spawn a class. What IDE are you using that didn't show that error?

But how? :L

Object instantiation is a basic programming concept. As the description of this forum says, "please keep in mind that this is not a Java school. You are expected to have basic knowledge of Java before posting here." I'd suggest taking a break from modding for a bit to go an learn the basics of Java, then coming back to modding once you're more familiar.

Whatever Minecraft needs, it is most likely not yet another tool tier.

  • Author
2 minutes ago, IceMetalPunk said:

Object instantiation is a basic programming concept. As the description of this forum says, "please keep in mind that this is not a Java school. You are expected to have basic knowledge of Java before posting here." I'd suggest taking a break from modding for a bit to go an learn the basics of Java, then coming back to modding once you're more familiar.

Yeah thanks :L

  • Author
1 hour ago, IceMetalPunk said:

Object instantiation is a basic programming concept. As the description of this forum says, "please keep in mind that this is not a Java school. You are expected to have basic knowledge of Java before posting here." I'd suggest taking a break from modding for a bit to go an learn the basics of Java, then coming back to modding once you're more familiar.

Ok, I did this:

@SubscribeEvent
public void PlayerInteractEvent(PlayerInteractEvent event)
{
    Block block = event.world.getBlock(event.x, event.y, event.z);
    
    if ((event.action == PlayerInteractEvent.Action.LEFT_CLICK_BLOCK) && (event.world.getBlock(event.x, event.y, event.z) == Blocks.tnt) &&
       (!event.entityPlayer.isSneaking()))
    {
        EntityTNTPrimed tnt = new EntityTNTPrimed(event.world, event.x, event.y+0.5, event.z, null);
        event.world.spawnEntityInWorld(tnt);
    }
}
}

----------------------------------

It spawns the entity but it still drops the tnt as an item. How can I stop it from being dropped?

You have to cancel the harvest event.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

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.