summaryrefslogblamecommitdiff
path: root/npc/009-3/barzil.txt
blob: 9fff1a7cc6a782e282b4eccf1e6c81b6722f5a09 (plain) (tree)
1
2
3
4
5
6
7
8
9



                

                                        
 
                                           
                                                                         
                                       

          










                                                                      



                  
 
// 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", 12000);
    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;
}