Frictional Games Forum (read-only)
[LANG] How do I create the credits? - 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 - Development (https://www.frictionalgames.com/forum/forum-38.html)
+---- Forum: Development Support (https://www.frictionalgames.com/forum/forum-39.html)
+---- Thread: [LANG] How do I create the credits? (/thread-19065.html)



How do I create the credits? - Magasztos - 11-03-2012

I know how to make the credits start through the script (StartCredits)
But I have no idea where I should write these credits

some help would be very much appreciated

Thanks :p


RE: How do I create the credits? - FlawlessHappiness - 11-03-2012

<CATEGORY Name="Ending">

<Entry Name="Credits">
CREDITS GOES HERE
</Entry>

</CATEGORY>

All text is written in the extra_english.lang

The red text is custom (I think). It depends on what you wrote when you called the credits


RE: How do I create the credits? - Melvin - 11-03-2012

Use your Extra eng lang file. Make this:


<CATEGORY Name="Ending">
<Entry Name="MainCredits">- Amnesia Custom Story Made by: YOURNAME -[br][br][br]- YOURCUSTOMSTORYNAME -[br][br][br]CREDITS[br][br]</Entry>

</CATEGORY>

The [br] will skip a line, you know the exact same if you press enter when typing the thank you reply. Wink

You can also type **. This will set that text in a different font.

In your script, use this:

(This is my ending scene script)

void OnStart()
AddTimer("", 55, "Credits");


void Credits(string &in asTimer)
{
StartCredits("YOURENDSONG.ogg", true, "Ending", "MainCredits", 9001);
}


Good luck! Let me know the results!