How do i add for example if someone says something he will never say it again..
:'(
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;
Thx thx thx thx