diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-14 21:34:05 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-14 21:34:05 -0300 |
commit | 2032d681bfd4f7671a74fc54b9f310de91a98978 (patch) | |
tree | 9d8ac5265c814f19a43a7aeaff00ac36b73c539c | |
parent | 0e14ede451af7f0fbc93312dacb88326d84c2368 (diff) | |
download | serverdata-2032d681bfd4f7671a74fc54b9f310de91a98978.tar.gz serverdata-2032d681bfd4f7671a74fc54b9f310de91a98978.tar.bz2 serverdata-2032d681bfd4f7671a74fc54b9f310de91a98978.tar.xz serverdata-2032d681bfd4f7671a74fc54b9f310de91a98978.zip |
Fix the remaining houses - Alchemy System is implemented (but no recipes yet)
-rw-r--r-- | npc/012-8/utils.txt | 1 | ||||
-rw-r--r-- | npc/017-7/utils.txt | 7 | ||||
-rw-r--r-- | npc/017-8/utils.txt | 7 |
3 files changed, 12 insertions, 3 deletions
diff --git a/npc/012-8/utils.txt b/npc/012-8/utils.txt index c1f3a9c51..53c68e588 100644 --- a/npc/012-8/utils.txt +++ b/npc/012-8/utils.txt @@ -83,7 +83,6 @@ OnInit: 012-8,29,24,0 script Cauldron#RES_0128 NPC_NO_SPRITE,{ - //npctalk l("Alchemy system Not Yet Implemented - Blame Jesusalva"); mesc l("What will you brew today?"); if (AlchemySystem(CRAFT_PLAYER)) mesc l("Success!"), 3; diff --git a/npc/017-7/utils.txt b/npc/017-7/utils.txt index 2266836f8..0e8275b41 100644 --- a/npc/017-7/utils.txt +++ b/npc/017-7/utils.txt @@ -83,7 +83,12 @@ OnInit: 017-7,29,24,0 script Cauldron#RES_0177 NPC_NO_SPRITE,{ - npctalk l("Alchemy system Not Yet Implemented - Blame Jesusalva"); + mesc l("What will you brew today?"); + if (AlchemySystem(CRAFT_PLAYER)) + mesc l("Success!"), 3; + else + mesc l("That didn't work!"), 1; + close; end; OnInit: diff --git a/npc/017-8/utils.txt b/npc/017-8/utils.txt index ae77217eb..eab10357d 100644 --- a/npc/017-8/utils.txt +++ b/npc/017-8/utils.txt @@ -83,7 +83,12 @@ OnInit: 017-8,29,24,0 script Cauldron#RES_0178 NPC_NO_SPRITE,{ - npctalk l("Alchemy system Not Yet Implemented - Blame Jesusalva"); + mesc l("What will you brew today?"); + if (AlchemySystem(CRAFT_PLAYER)) + mesc l("Success!"), 3; + else + mesc l("That didn't work!"), 1; + close; end; OnInit: |