blob: ad556d227f1ac465aa91ec679b6fbcbf8f90db3d (
plain) (
tree)
|
|
// TMW2/LOF Script.
// Author:
// Jesusalva
// Description:
// Part from the EPISODE and the Well Quest
// TODO: Walking NPC, clothes, etc;
019-1-1,41,24,0 script Miler NPC_PLAYER,{
.@q=getq(LoFQuest_EPISODE);
.@w=getq(NivalisQuest_Well);
if (!THIEF_RANK && !MERC_RANK)
goto L_Rejected;
mesn;
if (MERC_RANK)
mesq l("Hello, @@.", mercrank());
else
mesq l("Hello, @@.", thiefrank());
next;
mes l("Out of Order.");
close;
L_Rejected:
mesn;
mesq l("Hey, did you know there are two mouboos which constantly fight against themselves?!");
next;
mesn;
mesq l("One claims to be a constable and teach people to sell high and buy low.");
mesq l("The other one claims to be a dangerous bandit and to teach how to steal from monsters!");
next;
mesn;
mesq l("Well, I heard you needed to have some Job levels to sign up with them, and couldn't resign later.");
mesq l("But it is a so silly fight, that whoever you join with shouldn't do much difference.");
next;
mesn;
mesq l("Anyway, I heard both were disciples from Cordo-whatever, a powerful person from LoF Village.");
mesq l("I think you should get initiated on any side before speaking to me again.");
close;
OnInit:
.sex = G_MALE;
.distance = 5;
end;
}
|