When you've got a dialog happening, once the player character says the option and you got the response from the other character then return back to the same topic options, how do you stop that particular option from displaying?
By reading the manual, under 'Conversations'.
Quote
option-off X
Turns option X for the current topic off, meaning it won't be displayed in the list of choices next time.
option-off-forever X
Turns option X off permanently. It will never again be displayed, not even if an "option-on" command is used.
So something like:
@3
ego: This is the last time I'll ask this.
npc: Good.
option-off 3
return
@4
ego: Ok, this the the ABSOLUTE last time...
option-off-forever 4
return
You're right, there it was. I must have passed right over that in the manual. Thanks for the help.