Jump to content

Playing Music


firefligher

Recommended Posts

I did it like you sad but it never works. Here is a part of my code:

@ForgeSubscribe
public void onBackgroundSound(PlayBackgroundMusicEvent par1PlayBackgroundMusicEvent) {
	SoundPoolEntry var1 = par1PlayBackgroundMusicEvent.manager.soundPoolMusic.getRandomSoundFromSoundPool("ml.outdoor");

	if(var1 != null) {
		System.out.println("Play!");
		par1PlayBackgroundMusicEvent.result = par1PlayBackgroundMusicEvent.manager.soundPoolMusic.getRandomSoundFromSoundPool("ml.outdoor");
	} else {
		System.out.println("Load!");
		par1PlayBackgroundMusicEvent.manager.soundPoolMusic.addSound("ml/outdoor.ogg", new File(Minecraft.getMinecraft().getMinecraftDir(), "resources/MusicLoops/Outdoor.ogg"));
		this.onBackgroundSound(par1PlayBackgroundMusicEvent);
	}
}

 

I moved the file to mcp/jars/resources/MusicLoops/Outdoor.ogg. The messages from System.out.println say if it should play. And they do it always when they should do. But I can't here any music. The normal integrated music plays well.

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.