summaryrefslogtreecommitdiff
path: root/npc/031-7/tametomo.txt
blob: 03a7770bc47c595c2bffeef47f71c889ab86e876 (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)

031-7,76,49,2	script	Tametomo	NPC_SAVIOR,{
    .@q = getq(AethyrQuest_Tametomo);
    if (BaseLevel < 90) {
        mesc l("The wizard seems busy. He ignores you.");
        close;
    }
    mesn;
    mesq l("Go away.");
    close;

OnInit:
    .@npcId = getnpcid(.name$);
    setunitdata(.@npcId, UDT_HEADBOTTOM, GraduationRobe);
    setunitdata(.@npcId, UDT_HEADMIDDLE, ManaGloves);
    setunitdata(.@npcId, UDT_HEADTOP, ImperialCrown);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 9);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 18);
    npcsit;

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