Not exactly sure of what you want.
You mean, an NPC advancing a story so another NPC gives you a different dialog? That would be like this:
city,84,317,5 script DudeMan 665,{
//I always like to index quest variables at the top
if(lemon == 1){goto QUESTNAME1;}
if(lemon == 2){goto QUESTNAME2;}
mes "[DudeMan]";
mes "So... you will blahblah, go and punch Lemon.";
set lemon, 1;
close;
QUESTNAME1:
mes "[DudeMan]";
mes "Did you do it?";
mes "Come on, i know you didn't.";
close;
QUESTNAME2:
mes "[DudeMan]";
mes "Hehe, you showed that idiot.";
next;
mes "[DudeMan]";
mes "What? Did you expect a reward? You went and punched a guy for no reason, fuck off!";
close;
}//End of DudeMan
city,84,317,5 script Lemon 665,{
if(lemon == 1){goto QUESTNAME1;}
if(lemon == 2){goto QUESTNAME2;}
mes "[Lemon]";
mes "This script is UNNACEPTABLEEEEEE!.";
close;
QUESTNAME1:
dispbottom "You punch him really hard in the belly.";
sleep2 2000;
emotion e_sob;
mes "[Lemon]";
mes "w... why?";
sleep2 3000;
emotion e_sob;
mes "That hurts!";
set lemon, 2;
close;
QUESTNAME2:
emotion e_sob;
mes "[Lemon]";
mes "Please don't hurt me!";
close;
}//End of Lemon
That's the format I like to use, with some sleeps to make it more pretty.
Now, personally I don't like to use player variables. It depends on your emulator but they used to be a limited amount of player variables (256?). Since I'm kinda obsessive and we have many quests better made my own questing system xD (limits are scary!)