Jump to content

Playing sounds with custom items


Lightminer

Recommended Posts

Hey

Recently started learning modding and ive looked all over but i cant find a specific solution to my problem. I have basic java knowledge (currently studying computer science).

Here is my code:

@Override

public InteractionResultHolder<ItemStack> use(Level level, Player player, InteractionHand hand) {

if(!level.isClientSide() && hand == InteractionHand.MAIN_HAND) {

level.playSound(player, player.getX(), player.getY(), player.getZ(), ModSoundEvents.WILLIAM_STICK_INTERACT.get(), SoundSource.AMBIENT, 1.0f, 1.0f);

player.getCooldowns().addCooldown(this, 20);

}

return super.use(level, player, hand); }

 

I want my item to play a sound everytime i press mouse button 2. But it doesnt work. The cooldown function also stops working when i havent greyed out the sound part.

 

Link to comment
Share on other sites

3 hours ago, ChampionAsh5357 said:

Remove the player from the #playSound method. That says send the sound packet to all but the player

Did, but now the function requires something called DistanceDelay at the end of the parameters. I also tried setting the player to NULL but it still isnt working

Link to comment
Share on other sites

Hmm, maybe you should just copy what the EnderpearlItem does since you seem to be more or less doing the same thing. You can pass in the player in that case since the method is called on both sides.

As for the sound not playing, how are you defining your sound? Do you have the sounds.json set up? Is your sound in the sounds folder?

Link to comment
Share on other sites

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



×
×
  • Create New...

Important Information

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