Frictional Games Forum (read-only)

Full Version: Music to your custom story ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Does anyone know how i can add music to my custom map ?
a little help would be nice !
Just add an .ogg file to the music folder
(03-27-2011, 12:15 AM)Viperdream Wrote: [ -> ]Just add an .ogg file to the music folder

Do i have to make new music folder somewhere else because there is already one music folder that contais all songs from the game. And where do i have to put that .ogg file and what ogg. file ??? Confused
I just add it to the music file and it works fine.

And look a converter up for the .ogg file. It's just the same as mp3 or .wav, just another format.
(03-27-2011, 12:55 AM)Viperdream Wrote: [ -> ]I just add it to the music file and it works fine.

And look a converter up for the .ogg file. It's just the same as mp3 or .wav, just another format.

I want use games original music. And how i can add them to my custom map??
Add
Code:
void OnEnter()
{
PlayMusic("10_amb.ogg", true, 1, 0, 0, true);
}

to your map's HPS file, and replace 10_amb.ogg with whichever musictrack you want.

And this song can be in the game's main music folder, or in the music folder in that of your custom story.
Thanks alot !!!!!!!