// TMW2 Script.
// Author:
// Jesusalva
// Description:
// Lena
012-2,47,40,0 script Helena NPC_FEMALE,{
mesn;
mesq lg("Hello, madam!", "Hello, sir!");
close;
L_Main:
mesn;
mesq l("Bandits are a huge threat to Hurnscald. We're just a small farming town, and they're countless.");
next;
mesn;
mesq l("I did a travel to their cave, I wondered why their faces are never seen. Reason is that they're monsters.");
next;
mesn;
mesq l("Well, perhaps a few of them are rebels, I mean, people like us, but many of them are monsters.");
next;
mesn;
mesq l("Unfortunately, I was cursed to never enter their cave again. They used a @@ to do that!", getitemlink(BlueManaPearl));
next;
mesn;
mesq l("Thankfully that item is too rare. I want somebody to slay the bandit leader, but if you want to do it, you must prove yourself.");
next;
mesn;
mesq l("I will reward whoever kills the current bandit leader, of course.");
close;
OnInit:
.@npcId = getnpcid(0, .name$);
setunitdata(.@npcId, UDT_HEADTOP, FairyHat);
setunitdata(.@npcId, UDT_HEADMIDDLE, ForestArmor);
setunitdata(.@npcId, UDT_HEADBOTTOM, CottonSkirt);
setunitdata(.@npcId, UDT_WEAPON, LousyMoccasins);
setunitdata(.@npcId, UDT_HAIRSTYLE, 17);
setunitdata(.@npcId, UDT_HAIRCOLOR, 7);
.sex = G_FEMALE;
.distance = 5;
end;
}