diff options
Diffstat (limited to 'npc/017-4/refine.txt')
-rw-r--r-- | npc/017-4/refine.txt | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/npc/017-4/refine.txt b/npc/017-4/refine.txt new file mode 100644 index 000000000..0e1a272f1 --- /dev/null +++ b/npc/017-4/refine.txt @@ -0,0 +1,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; +} + |