summaryrefslogtreecommitdiff
path: root/npc/015-3-1/pablin.txt
blob: 33debb9b67120c5da6ba800773768b9005dbf829 (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
// TMW2 scripts.
// Author:
//    Jesusalva
// Description:
//    A retired pirate

015-3-1,83,39,0	script	Pablin	NPC_OLDPIRATE,{
    .@q = getq(HurnscaldQuest_PirateCave);
    if (.@q > 7) goto L_Post;
    mesn;
    mesq l("Hey, you! What are you doing here?!");
    next;
    mesn;
    mesq l("These are dangerous caves since Marley and her gang made it a hideout.");
    next;
    mesn;
    mesq l("I won't stop you from going inside, but be careful, you hear me?");
    close;

L_Post:
    mesn;
    mesq l("Marley is furious that someone stole her treasure... You wouldn't happen to know anything about this, would you...?");
    close;

OnInit:
    .sex = G_MALE;
    .distance = 4;
    end;
}