diff options
Diffstat (limited to 'npc/009-1')
-rw-r--r-- | npc/009-1/barzil.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/npc/009-1/barzil.txt b/npc/009-1/barzil.txt index c1019714e..0802556d4 100644 --- a/npc/009-1/barzil.txt +++ b/npc/009-1/barzil.txt @@ -5,9 +5,21 @@ // 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; |