Frictional Games Forum (read-only)

Full Version: My custom Credits arn't showing.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey.
I have a little probleme with my Credits , i've writed my own one , but in-game , it shows the game's Credits (the original Credits)

Here how where the credits function is called :

void finish(string &in asEntity)
{
GiveSanityBoost();
FadeOut(1.7);
AddTimer("rrioairjaer", 2.0f, "startcredits");
}

void startcredits(string &in asTimer)
{
StartCredits("ending_alexander.ogg", false, "Ending", "MainCredits", 9001);
}

And here is the Category and the Entry in the extra_english.lang :

<CATEGORY Name="Ending">
<Entry Name="MainCredits">blablablablablabla[br][br][br]blablalba[br]*blabla[br]blabal</Entry>
</CATEGORY>

Is there anything wrong ? I will apreciate any tips or help.
My guess is it's looking for the MainCredits entry in the original game's .lang file before it looks in yours, so try changing 'MainCredits' to something unique like 'MyStoryCredits'
Alright , i'll give it a look and feedback if it worked or not :3

EDIT: Thanks alot , it worked Smile