Procedure : Play a sound when an item is retrieved

Started by eXtra_Geek_Style on

Topic category: Help with Minecraft modding (Java Edition)

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
Procedure : Play a sound when an item is retrieved

Hello, I need help, I'm making a mod whose when you retrieve a Item, it play a sound, but I don't know how to do, does anyone know ? Thank you !

 

Active 4 years ago
Joined Sep 2019
Points:
973

User statistics:

  • Modifications: 1
  • Forum topics: 14
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 507
Use sumtang like 'dis; …
Sun, 06/07/2020 - 00:20

Use sumtang like 'dis;

    @SubscribeEvent
    public void pickupItem(PlayerEvent.ItemPickupEvent event)
    {
        if (event.getStack().getItem() == Items.CAKE) {
            event.getPlayer().world.playSound(event.getPlayer(), event.getPlayer().getPosition(), SoundEvents.AMBIENT_CAVE, SoundCategory.NEUTRAL, 1F, 1F);
        }
    }

 

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
What line should I put this…
Sun, 06/07/2020 - 10:52

What line should I put this code on?

Active 4 years ago
Joined Sep 2019
Points:
973

User statistics:

  • Modifications: 1
  • Forum topics: 14
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 507
Anywhere in any class, just…
Sun, 06/07/2020 - 16:43

Anywhere in any class, just make sure it is registered.

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
What if I want it to be a…
Sun, 06/07/2020 - 17:44

What if I want it to be a sound that I imported into my MCreator workspace?

 

Active 4 years ago
Joined Sep 2019
Points:
973

User statistics:

  • Modifications: 1
  • Forum topics: 14
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 507
So I did some looking around…
Sun, 06/07/2020 - 17:55

So I did some looking around, and I found this;

(net.minecraft.util.SoundEvent) ForgeRegistries.SOUND_EVENTS.getValue(new ResourceLocation("modid:nameofsound")

So, in the end, it should look similar to this;

    @SubscribeEvent
    public void pickupItem(PlayerEvent.ItemPickupEvent event)
    {
        if (event.getStack().getItem() == Items.CAKE) {
            event.getPlayer().world.playSound(event.getPlayer(), event.getPlayer().getPosition(), (net.minecraft.util.SoundEvent) ForgeRegistries.SOUND_EVENTS.getValue(new ResourceLocation("modid:nameofsound"), SoundCategory.NEUTRAL, 1F, 1F);
        }
    }

 

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
So compared to my…
Sun, 06/07/2020 - 21:12

So compared to my modifications, should I just modify the "modid: nameofsound"?

 

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
and if my item is named …
Sun, 06/07/2020 - 21:14

and if my item is named "bolt" modify "Item.CAKE" and set "Item.bolt" ?

 

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
(No subject)
Sun, 06/07/2020 - 21:34

Error in the code, anyone have an idea ?

Active 4 years ago
Joined Sep 2019
Points:
973

User statistics:

  • Modifications: 1
  • Forum topics: 14
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 507
add a ")" at the end
Sun, 06/07/2020 - 21:36

add a ")" at the end

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
Thank you ! 😀
Sun, 06/07/2020 - 21:38

Thank you ! 😀

Active 4 years ago
Joined Sep 2019
Points:
973

User statistics:

  • Modifications: 1
  • Forum topics: 14
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 507
👍
Sun, 06/07/2020 - 21:39

👍

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
So it will be like this ?
Sun, 06/07/2020 - 21:42

So it will be like this ?So it will be like this ?

Active 3 years ago
Joined Jun 2019
Points:
679

User statistics:

  • Modifications: 1
  • Forum topics: 2
  • Wiki pages: 0
  • MCreator plugins: 0
  • Comments: 22
So... I've not the same…
Sun, 06/07/2020 - 21:53

So... I've not the same result... It do this :

Error in the code