diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-22 21:21:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-22 21:21:09 -0300 |
commit | ced3d62b5a72ea6c69bba1c52e3c3574bc5fe56b (patch) | |
tree | 783f3f522f18289f2622c72d6bbf7d88b3c287dc /npc/functions | |
parent | fd561219136a5b4903803d73b7f523c0e6953c9e (diff) | |
download | serverdata-ced3d62b5a72ea6c69bba1c52e3c3574bc5fe56b.tar.gz serverdata-ced3d62b5a72ea6c69bba1c52e3c3574bc5fe56b.tar.bz2 serverdata-ced3d62b5a72ea6c69bba1c52e3c3574bc5fe56b.tar.xz serverdata-ced3d62b5a72ea6c69bba1c52e3c3574bc5fe56b.zip |
Fix typo, add recipe to old players on CV, mark new Dagger recipe on book.
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/clientversion.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 702ec6077..98dc820c1 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -283,6 +283,11 @@ function script clientupdater { if (MERCENARY_DAILYQUEST > 100) { getitem BountyHunterHelmet, 1; } + // If you have TMW2_CRAFT skill, you need the bonus recipe + if (getskilllv(TMW2_CRAFT)) { + RECIPES_EQUIPMENT[CraftDagger]=true; + dispbottom l("Dagger Crafting recipe learnt."); + } // Cleanup deletearray RNGTREASURE_DATE; } |