[Solved] Sound Isn't Playing? - 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: [Solved] Sound Isn't Playing? (/thread-13258.html) Pages:
1
2
|
RE: Sound Isn't Playing? - Your Computer - 02-11-2012 Try adding FatherSufferSame.ogg to the first parameter of AddEffectVoice. RE: Sound Isn't Playing? - Elven - 02-11-2012 HEre is easier solution: U wrote: AddEffectVoice("", "", "Subtitles", "FatherSufferSame", false, "", 1, 10); it should be this: AddEffectVoice("SoundName(It must be .ogg)", "", "CategoryName", "EntryName", true, "EntityWhereUWantToPlayIt", 4, 16); For example: AddEffectVoice("EpicElven.ogg", "", "Subtitles", "elventalks1", true, "Elven", 4, 16); Note that elventalk1. It is because if I use like 5 of them straight, they wont play at the same time, they play one after another. putting it like that, I can make subtitle part 2, with just changing 1 to 2 |