diff options
Diffstat (limited to 'npc/guilds/alchemy.txt')
-rw-r--r-- | npc/guilds/alchemy.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/npc/guilds/alchemy.txt b/npc/guilds/alchemy.txt new file mode 100644 index 000000000..008e2c2b6 --- /dev/null +++ b/npc/guilds/alchemy.txt @@ -0,0 +1,29 @@ +// Moubootaur Legends Script +// Author: +// Jesusalva +// Description: +// Guild Facility - Alchemy Table + +guilds,24,35,0 script Guild Chemistry NPC_NO_SPRITE,{ + do + { + mesc l("What will you brew today?"); + if (AlchemySystem(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; +} + |