Frictional Games Forum (read-only)

Full Version: How to get working several "Voice effects at same map" [SOLVED]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Yes my problem is this:

I need to get working many voice acting effects on one Intro.

void TeleportLocationTwo (string &in asTimer)
{
TeleportPlayer("PlayerStartArea_2");
AddTimer ("", 7, "FadeOut");
AddEffectVoice("whatanight.ogg", "", "Subtitles", "whatanight", false, "Player", 0, 0); <-- WORKING
SetMessage("Message", "ATSL", 4);
AddTimer ("", 10, "TeleportLocationThree");
FadeIn (2);
StopPlayerLookAt();
}



void TeleportLocationThree (string &in asTimer)
{
TeleportPlayer("PlayerStartArea_3");
FadeIn (2);
AddEffectVoice("sleep.ogg", "", "Subtitles", "sleep", false, "Player", 0, 0); <-- NOT WORKING why?
SetMessage("Message", "Enjoy", 4);
AddTimer ("", 5, "FadeOut4");
AddTimer ("", 8, "TeleportLocationFour");
SetPlayerLookSpeedMul(0.3f);
}

When player teleports other place I need to make that second "voice acting working too" but nothing happens or I can't hear anything only first effect.

Where's the problem? Need help ASAP.
Moved to the correct forum.
Thanks for that, wasn't sure where this thread belongs.
The hpl.log should say why it doesn't work.
I had that kind of problem when I was making Followed By Death Chapter One almost a year ago and I remember voice effects didn't work too well with AddTimer functions. So you should put that

AddEffectVoice("sleep.ogg", "", "Subtitles", "sleep", false, "Player", 0, 0);

line of script right after the first voice effect command under the "void TeleportLocationTwo" function and then try to time "TeleportLocationThree" func and the second voice effect right.

Or it's just something complete else and all that was completely useless ^^
(06-13-2012, 06:29 PM)Your Computer Wrote: [ -> ]The hpl.log should say why it doesn't work.
I can't find the problem there. Sry, but I don't get it.

(06-13-2012, 08:00 PM)JMFStorm Wrote: [ -> ]I had that kind of problem when I was making Followed By Death Chapter One almost a year ago and I remember voice effects didn't work too well with AddTimer functions. So you should put that

AddEffectVoice("sleep.ogg", "", "Subtitles", "sleep", false, "Player", 0, 0);

line of script right after the first voice effect command under the "void TeleportLocationTwo" function and then try to time "TeleportLocationThree" func and the second voice effect right.

Or it's just something complete else and all that was completely useless ^^


Lol it worked. Thanks JMFStorn I owe you one Tongue