summaryrefslogtreecommitdiff
path: root/npc/004-2/pachua.txt
blob: dcf5983a476f4a4db08464b5e191539ab76a6078 (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:
//    Part of Speed Run Quest, and an unplanned assassin quest.

004-2,61,118,0	script	Pachua	NPC_INDIGENOUS_OLD,1,1,{
    if (@pachua == 1) goto OnTouch;
    mesn;
    mesq l("Howdy! Mirio and I scout this canyon to protect our clan. I am also a retired assassin, maybe someday I can exchange some knowledge with you! Hahaha!");
    close;

OnTouch:
    if (@pachua != 1) end;
    message strcharinfo(0), "Pachua quickly inhales from his pipe and releases a ring of smoke towards the sky!";
    @pachua = 2;
    end;

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