// 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; }