summaryrefslogtreecommitdiff
path: root/npc/005-1/sailors.txt
blob: 02df16ae34dcd41bf9997e406f3c670dfe7100c9 (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
// TMW2 scripts.
// Authors:
//    Jesusalva
// Description:
//    TODO

005-1,95,99,0	script	Sailors	NPC_ELVEN_MAN_TRADER_SITTING,0,0,{
    .@q = getq(CandorQuest_Sailors);
    if (.@q == 1) mesn;
        //goto L_Find;

    mesn;
    mesq l("Ahoy matey!");
    next;
    mesq l("Arr, it is always good to be on land after so much time in sea!");
    next;
    mesq l("I still can't believe we ran out of beer, though!");
    close;

OnInit:
    .sex = G_OTHER;
    .distance = 8;
    end;
}