Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: limeTree on Sat 27/12/2008 11:08:00

Title: say simultaniosly
Post by: limeTree on Sat 27/12/2008 11:08:00
I want to of my characters to come to a conclusion at the same time,i am
using default sierra talking style
how can i make them say those sentences at the same time?
Title: Re: say simultaniosly
Post by: Creator on Sat 27/12/2008 12:28:41
With AGS as is it's not possible, but there was a module I found a while back that allowed you to do this. I don't remember what it was called and, because of that, can't find it in the module forum (though I thought I'd remember it when I saw it). Search for yourself. It should still be there.
Title: Re: say simultaniosly
Post by: Akatosh on Sat 27/12/2008 12:37:48
You could use something like this...


cCharacter1.SayBackground("The duodenum!");
cCharacter2.Say("The duodenum!");
cCharacter1.SayBackground(" ");


...but I'm not sure if that'll work with Sierra style speech. It will work for the default stuff, though.
Title: Re: say simultaniosly
Post by: Matti on Sat 27/12/2008 14:05:36
...but note that the character's speech view isn't shown when using saybackground. You could bypass that by activating and changing the character's idle view I guess.