Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: on Fri 14/05/2004 20:34:10

Title: How do i do this??
Post by: on Fri 14/05/2004 20:34:10
How do i add for example if someone says something he will never say it again..
:'(
Title: Re: How do i do this??
Post by: Ishmael on Fri 14/05/2004 20:51:13
Use discriptive subjects for topics. WHERE do you want so if someone says something he won't say it again? In dialog? See the "Conversations" in the tutorial section of the manual, look for option-* commands. Or in normal interactions? For example, if you're "Run Script"ing for DisplaySpeech, do something like:

if (spoken == 0) {
DisplaySpeech(blah blah blah...)
spoken = 1;
}

and add to the start of the room script:

int spoken;
Title: Re: How do i do this??
Post by: on Fri 14/05/2004 21:12:00
Thx thx thx thx