blob: 874cc6c994c518b3da20fb0b134772b3f1f2553c (
plain) (
tree)
|
|
// 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;
}
|