summaryrefslogtreecommitdiff
path: root/npc/009-3/barzil.txt
blob: d4462bdc124f405dfa29a247a7400187fd6666c1 (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
// TMW-2 Script.
// Author:
//    Saulc
//    Jesusalva
// Description:
//    Banker. Also used on Tier 2 Quest.

009-3,29,38,0	script	Barzil	NPC_LLOYD,{
    if (ST_TIER == 2 && gettimetick(2) < QUEST_ELEVARTEMPO) goto L_Tier2;
    Banker(.name$, "Halinarzo", 8900);
    close;

L_Tier2:
    mesn strcharinfo(0);
    mesq l("I need for the Magic Academy a @@, 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;
}