FYI, the quest is either not started yet or at stage 10 at this point. Also, I'm not adding them in here, but obviously I have the conditions set for my NPC to say the dialog on all lines. (Run on: Subject) GetIsID MyNPC == 1.0000 (AND)
So, simplifying my dialog, it's basically like this:
GREETING
NPC - Can you find something for me I lost? (say once) (Run on: Subject) GetStage MyQuest <= 10.0000 (AND)
PC - Yes, what to you need? (complete rest of dialog tree, advance to stage 20 of quest and should make option 4 the next greeting) not working correctly
PC - Maybe later. (makes option 2 the next greeting)
OPTION 2
NPC - Are you ready to help me yet? (say once) (Run on: Subject) GetStage MyQuest <= 10.0000 (AND)
PC - Yes, I'm ready. (complete rest of dialog tree, advance to stage 20 of quest and should make option 4 the next greeting) not working correctly
PC - No, not yet. (makes option 3 the next greeting)
OPTION 3
NPC - I'm not going to ask for your help again. Will you help me or not?
PC - Sure, what do you need. (complete dialog tree and advance to stage 20 of quest)
PC – I'm not going to help you right now. (quest fail)
OPTION 4
NPC - Have you found my item yet? GetStage MyQuest (Run on: Subject) GetStage MyQuest => 20.0000 (AND) available only after the other options are spoken
PC – Yes.
PC – No.
Unless I misunderstood something, I thought that the condition “(Run on: Subject) GetStage MyQuest <= 10.0000 (AND)” would cause those topics to be spoken ONLY if the quest stage was less than or equal to 10? And that the condition "(Run on: Subject) GetStage MyQuest => 20.0000 (AND)" would cause that line to ONLY be spoken after the quest was 20 or greater? If so, why are each of the options available after the quest has advanced to stage 20? Is it the "say once" flag causing it maybe?
In other words, I can start with the very first greeting option, go through the entire dialog tree, advance to stage 20 and exit from the dialog menu with my NPC. The go right back into the dialog with him, and he greets me with option 2 rather than option 4.
What have I missed?
