summaryrefslogtreecommitdiff
path: root/npc/012-2-1/jessie.txt
blob: 7356bfe6ba97cf5760821fd42eb49e18b4ab7f75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Evol scripts.
// Author:
//    Micksha
// Description:
//    Jessie, Sorfina's old husband.
// THIS IS A PLACEHOLDER!

012-2-1,38,30,0	script	Jessie	NPC_JESSIE,{
    speech
        l("Welcome."),
        l("I am \"uncle\" Jessie and I teach the kids in Candor.");
    next;
    mesn;
    mesq l("Actually... Do you know why the Piou crossed the road?");
    next;
    if (askyesno() == ASK_NO) {
        mesn;
        mesq l("Dang! I don't know either, but I'm too shy to ask.");
    } else {
        mesc l("Why the Piou crossed the road?");
        input .@jessanswer$;
        mesn;
        mesq l("Pfft, you obviously don't know either!");
    }
    close;

OnInit:
    .distance = 4;
    end;
}