diff options
Diffstat (limited to 'npc/guilds/forge.txt')
-rw-r--r-- | npc/guilds/forge.txt | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/npc/guilds/forge.txt b/npc/guilds/forge.txt new file mode 100644 index 000000000..55924656e --- /dev/null +++ b/npc/guilds/forge.txt @@ -0,0 +1,30 @@ +// Moubootaur Legends Script +// Author: +// Jesusalva +// Description: +// Guild Facility - Blacksmith Area + +guilds,24,27,0 script Guild Blacksmith NPC_NO_SPRITE,{ + do + { + mesc l("What will you forge today?"); + mesc l("You might need to have a @@ equipped for some recipes!", getitemlink(Knife)); + if (SmithSystem(CRAFT_GUILD)) + { + mesc l("Success!"), 3; + next; + } + else + { + mesc l("That didn't work!"), 1; + next; + } + mesc l("Try again?"); + } while (askyesno() == ASK_YES); + close; + +OnInit: + .distance=2; + end; +} + |