Jump to content

Item playing sound {Solved}


Texasjake95

Recommended Posts

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]));
	}
}

}

 

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.