summaryrefslogtreecommitdiff
path: root/npc/024-10/eldrin.txt
blob: f03cea5a72974325b232d5e93af68635bc87e522 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// TMW2 scripts.
// Authors:
//    Jesusalva
// Description:
//    Questmaker Handbook 14.0 (F = Favorable)

024-10,33,30,0	script	Eldrin	NPC_ELF,{
    // FIXME: Bounty House
    //.@q = getq(FrostiaQuest_Rydel);
    if (BaseLevel < 30) {
        mesc l("The elf seems busy. He ignores you.");
        close;
    }
    mesn;
    mesq l("Sorry, we're not yet open.");
    close;

OnInit:
    .@npcId = getnpcid(.name$);
    setunitdata(.@npcId, UDT_HEADBOTTOM, CottonTrousers);
    setunitdata(.@npcId, UDT_HEADMIDDLE, Chainmail);
    setunitdata(.@npcId, UDT_HEADTOP, VikingHelmet);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 7);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 11);

    .sex = G_MALE;
    .distance = 5;
    end;
}