Frictional Games Forum (read-only)
Music to your custom story ? - Printable Version

+- Frictional Games Forum (read-only) (https://www.frictionalgames.com/forum)
+-- Forum: Amnesia: The Dark Descent (https://www.frictionalgames.com/forum/forum-6.html)
+--- Forum: Custom Stories, TCs & Mods (https://www.frictionalgames.com/forum/forum-35.html)
+--- Thread: Music to your custom story ? (/thread-7069.html)



Music to your custom story ? - Crypto - 03-26-2011

Does anyone know how i can add music to my custom map ?
a little help would be nice !


RE: Music to your custom story ? - Viperdream - 03-27-2011

Just add an .ogg file to the music folder


RE: Music to your custom story ? - Crypto - 03-27-2011

(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


RE: Music to your custom story ? - Viperdream - 03-27-2011

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.


RE: Music to your custom story ? - Crypto - 03-27-2011

(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??


RE: Music to your custom story ? - Kurton - 03-27-2011

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.


RE: Music to your custom story ? - Crypto - 03-27-2011

Thanks alot !!!!!!!