summaryrefslogtreecommitdiff
path: root/npc/009-1/barzil.txt
blob: 0802556d4511a1b843068121d140b2a8f95dbd30 (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
// TMW-2 Script.
// Author:
//    Saulc
//    Jesusalva
// PS. move to indoors

009-1,44,48,0	script	Barzil	NPC_LLOYD,{
    if (ST_TIER == 2 && gettimetick(2) < QUEST_ELEVARTEMPO) goto L_Tier2;
    Banker(.name$, "Halinarzo", 13000);
    close;

L_Tier2:
    mesn strcharinfo(0);
    mesq l("I need my master's @@, fast!", getitemlink(SunnyCrystal));
    next;
    mesn;
    mesq l("Of course! Quick, take it!!");
    inventoryplace SunnyCrystal, 1;
    ST_TIER=3;
    getitem SunnyCrystal, 1;
    close;

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