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

I am trying to make a rooster sound (test.test) play when the item is right clicked... Unfortunately it kills all sounds right now...

 

Item Code

 

 public ItemStack onItemRightClick(ItemStack itemstack, World world, EntityPlayer entityplayer) 
 {
	int z = mc.thePlayer.inventory.getCurrentItem().getItemDamage();
	boolean par1 = true;
	boolean par2 = false;
	if (z == 1)
		  if (0 <world.getWorldTime() & 12000>world.getWorldTime())
			{
				mc.theWorld.setWorldTime(12000);
				return itemstack;
			}
			else if (12000 <world.getWorldTime() & 23999>world.getWorldTime())
			{
				mc.sndManager.playSoundFX("test.test",100F, 1F);
                                        mc.theWorld.setWorldTime(0);
				return itemstack;
			}

 

 

Also here's my Sound Handler too just in case

 

 

package net.minecraft.src;

import net.minecraft.src.SoundManager;
import net.minecraft.src.forge.adaptors.SoundHandlerAdaptor;


public class texasjake95_SoundHandler extends SoundHandlerAdaptor
{

public void onSetupAudio(SoundManager soundManager){

}

public void onLoadSoundSettings(SoundManager soundManager) {
	String [] soundFiles = {
			"test/test.ogg"};
	for (int i = 0; i < soundFiles.length; i++){
		soundManager.getSoundsPool().addSound(soundFiles[i], this.getClass().getResource("/XXX/sound/" + soundFiles[i]));
	}
}

}

 

  • Author

How do I know if it's right? Try it out.

 

Btw, I suggest you to use world.playSoundEffect(...) instead of the current function you are using.

I changed the function to that is still kills all sound though like the sound isn't there to be played

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.