// TMW2 Script // Author: // Jesusalva // Description: // Morgan is the only mage in Candor. She was assigned by the Alliance to defend // the small island, and is married with Zitoni. 005-6,30,37,0 script Morgan NPC_RUMLY_FEMALE,{ mesn; mesq lg("Hello there, darling."); next; menu l("Who are you?"), L_Who, l("Do you sell anything here?"), L_Shop, l("Hi."), -; // Let's be honest, many conversations dies this way >.< close; L_Who: mes ""; mesn; mesq l("I am @@, the only mage in Candor.", .name$); next; mesq l("My husband and I have moved here under the Alliance orders."); next; mesq l("I really hope that nothing major happens, though. I would hate to see blood being spilled."); next; if (!#MAGIC_LVL) mesq l("If you train hard enough, and get access to a Mana Stone, I could teach you a trick or two. But right now, I don't sense magic compatibility in you."); else mesq l("I see you are a mage too. Have you joined a class already? Luca and Colin are always recruiting on Tulimshar Magic Council."); close; L_Shop: mes ""; mesn; mesq l("Why, I actually do sell a few things here! But they probably aren't what you're looking for."); next; openshop; closedialog; close; OnInit: tradertype(NST_MARKET); sellitem CottonCloth, 200, 7; sellitem Fungus, -1, 10; sellitem Bread, -1, 15; .sex = G_FEMALE; .distance = 5; end; OnClock0556: OnClock1201: OnClock1759: OnClock0003: restoreshopitem CottonCloth, 200, 7; restoreshopitem Fungus, -1, 10; restoreshopitem Bread, -1, 15; }