Guys, is it possible to make multiple characters speak at the same time? Like singing in a choir.
I tried both .Say and Display.
I tried both .Say and Display.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
function cLupo_AnyClick() {
if (Verbs.MovePlayer(340, 140)) {
player.FaceDirection(eDirectionRight);
// WALK TO
if (Verbs.UsedAction(eGA_WalkTo)) {
Verbs.GoTo();
}
// GIVE TO (characters only)
else if (Verbs.UsedAction(eGA_GiveTo)) {
if (player.ActiveInventory == iObject) {
player.LoseInventory(iObject);
player.Say("do you want this?");
cLupo.Say("WOW! YES. I want it");
} else if (player.ActiveInventory != iObject) {
player.Say("do you want this?");
cLupo.Say("No");
}
}
}
}
cMan1.Say ("xxx");
cMan2.Say ("yyy");
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.090 seconds with 14 queries.