summaryrefslogtreecommitdiff
path: root/npc/017-4/refine.txt
blob: 874cc6c994c518b3da20fb0b134772b3f1f2553c (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
31
32
33
34
// TMW2/LoF scripts.
// Authors:
//    TMW-LoF Team
//    Jesusalva
// Description:
//    Refine and Repair broken equipment.
017-4,38,35,0	script	Fortiun	NPC_FORTIUN,{
    showavatar NPC_FORTIUN;
    @menu=0;
    do
    {
        refineMaster();
    } while (1);

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

017-4,23,23,0	script	Fusus	NPC_FUSUS,{
    showavatar NPC_FUSUS;
    @menu=0;
    do
    {
        repairMaster();
    } while (getbrokencount() >= 0);

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