Frictional Games Forum (read-only)
Subtitles? - 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: Subtitles? (/thread-9046.html)



Subtitles? - X4anco - 07-09-2011

Hello peoples.
I am making a custom story and how do you add subtitles - not messages, subtitles - eg when you have a flashback in the main game.


RE: Subtitles? - Kurton - 07-09-2011

There are TextCat="" and TextEntry="" in flashback files, that determine what text in your LANG file will be used for that flashback event. Example:

Code:
<CATEGORY Name="FlashbackStuff">
<Entry Name="ThisEntry">Subtitles, yeah</Entry>
</CATEGORY>

to display that, have

Code:
<Flashback>
    <Voices>
        <Voice VoiceSound="flashbacks/flashback_whatever.ogg" EffectSound="" TextCat="FlashbackStuff" TextEntry="ThisEntry" />
    </Voices>
</Flashback>

In your flashback's .FLASH file.