Jump to content

How do I make something happen when I use my item when not looking at a block?


Recommended Posts

Posted

Sounds like you want PlayerInteractEvent.

 

so i looked at the class file of it, im not too sure how to use it. would this be correct?

 

public PlayerInteractEvent(EntityPlayer player, Action action, BlockPos pos, EnumFacing face, World world){
if (action == RIGHT_CLICK_AIR) {
	//code
}
}

Posted

I have a vague memory of #onItemUse being the method called when you right-click on a block, and #onItemRightClick being called only when you clicked in the air... but it's been more than 6 months since I've messed with it, so I could be completely mis-remembering that.

 

But, if it's not your Item class but someone else's (e.g. vanilla item), then yeah, diesieben is right - use PlayerInteractEvent. There are lots of event tutorials online that cover how to do it in detail, more detail than anyone would want to type here.

Posted

Food items can be used without acting upon a block, so what path do they take? Using the debugger, try to trace the execution path of a vanilla food item being eaten.

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • hello everyone, i've troubles with my multiplayer forge server. i'm trying to solve those troubles but i didn't find enything in about 2 hours, can someone helps me? thanks here's the log of the server https://mclo.gs/hNSvOru
    • There are a few people that frequent the forums, but I would say most stuff probably happens in discord
    • I had a look at the the latest posts in Home > Mod Developer Central > Modder Support. The only answers came from the OPs themselves.
    • I have downgraded it to before March 2025 as that's when Create 0.6 updated. It seemed to work, tysm!!
    • I read  Resource Packs Resources Tutorial:Creating a resource pack As I understood I should place my resource pack files in: src/main/resources/ ├── META-INF │   └── mods.toml ├── assets/ ├── pack.mcmeta └── pack.png But in Minecraft, if I open Options > Resource Pack, I cannot find my resource pack. However, if I zip the files above and put the zip into run/resourcepacks/MyFirstMod.zip, my resource pack shows up in Minecraft. I assumed that ./gradlew build would take care of bundling my resource pack. Or am I supposed to zip the files and place them in run/resourcepacks manually? 
  • Who's Online (See full list)

    • There are no registered users currently online
×
×
  • Create New...

Important Information

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