Question about voiceover additions - 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 (https://www.frictionalgames.com/forum/forum-35.html) +--- Thread: Question about voiceover additions (/thread-8148.html) |
Question about voiceover additions - Duenuard - 05-20-2011 I'm sorry if this has been answered already, but I want to know how exactly to add a voiceover to my DIARY entry (please notice I am talking about a diary entry and NOT a note entry). The code I have now allows me to pick up the note and read it only after I have hit "N", it doesn't allow me to read the note right as I pick it up for some reason... but I want it to just pick it up and start talking just like Daniel does in the actual game. Anyone know how this works? RE: Question about voiceover additions - Russ Money - 05-20-2011 (05-20-2011, 09:01 PM)Duenuard Wrote: I'm sorry if this has been answered already, but I want to know how exactly to add a voiceover to my DIARY entry (please notice I am talking about a diary entry and NOT a note entry). The code I have now allows me to pick up the note and read it only after I have hit "N", it doesn't allow me to read the note right as I pick it up for some reason... but I want it to just pick it up and start talking just like Daniel does in the actual game. Anyone know how this works? In the map editor, select your note entity. In the entity tab, near the bottom should be a "Use Narration" tick. Make sure that's ticked. In your custom story root folder, make sub directories as follows: Custom_Stories\<Your Story>\lang\eng\voices\diaries Place all your voice over sounds in there (*.ogg). In your .lang file, go through and add the .ogg files to it. Example: This is a excerpt from my .lang file. Code: <Entry Name="Note_Scientite_Text">[br][voice freezeman_RE1.ogg][br] How it's added is adding the [voice freezeman_RE1.ogg], which would be for you [voice name.ogg] or whatever your .ogg is named. RE: Question about voiceover additions - Duenuard - 05-20-2011 (05-20-2011, 09:58 PM)Russ Money Wrote:(05-20-2011, 09:01 PM)Duenuard Wrote: I'm sorry if this has been answered already, but I want to know how exactly to add a voiceover to my DIARY entry (please notice I am talking about a diary entry and NOT a note entry). The code I have now allows me to pick up the note and read it only after I have hit "N", it doesn't allow me to read the note right as I pick it up for some reason... but I want it to just pick it up and start talking just like Daniel does in the actual game. Anyone know how this works? I'm not using a note page, I'm using a diary page which doesn't have the narration tick on it. diary_paper01.ent is what I'm using. I don't want notes in my Journal (as of yet), I just want it to be a diary page. |