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

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

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

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