(04-12-2012, 06:20 PM)ClayPigeon Wrote: You're missing an argument on the PlayMusic function.
1 2 3 4 5
PlayMusic("requiem_for_a_dream.ogg", false, 1, 3, 0);
1 2 3 4 5 6
PlayMusic(string& asMusicFile, bool abLoop, float afVolume, float afFadeTime, int alPrio, bool abResume);
You're missing the bool abResume part. Set it to false/true.
Now I did this:
//===========================================
//===========================================
// This runs when the map first starts
void OnStart()
{
FadeOut(0);
FadeIn(10);
}
//===========================================
// This runs when the player enters the map
void OnEnter()
{
StopMusic(0,1);
PlayMusic("requiem_for_a_dream.ogg", false, 1, 3, true 0);
}
//===========================================
// This runs when the player leaves the map
void OnLeave()
{
}
I got another error that said:
Expected ')' or ','. I tried to put i tlike this:
PlayMusic("requiem_for_a_dream.ogg", false, 1, 3, true, 0);
But that would only give me an error too.