RE: Almost Done / Lang File Error
Ok, I now have the door working, and all that's left are the credits.
After that, I zip this up and put it up here. What's a basic code for an ending area?
Nothing with massive flair, jsut a fade-out to the credits? I tried placing an area called exit, but I don't think what I put is working, since nothing happens:
void exit(string&in asTimer)
{
AddTimer("timer02", 2.5f, "Credits");
}
void Credits(string&in asTimer)
{
StartCredits("29_amb_end_daniel.ogg", false, "Ending", "MainCredits", -1);
}
Am I supposed to put something in the onLeave section?
|