diff options
-rw-r--r-- | npc/items/books.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/items/books.txt b/npc/items/books.txt index c1d208acd..825f99e64 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -182,7 +182,8 @@ OnInit: rif( MAGIC_LVL >= 2 ,rif(@menu == 3, "► ") + l("Ch 3 — Subclass")), rif( true ,rif(@menu == 4, "► ") + l("Open Fishing Book")), rif( true ,rif(@menu == 5, "► ") + l("Open Petcaring Book")), - rif( true ,rif(@menu == 6, "► ") + l("Read Rules")), + rif( getq(NivalisQuest_BlueSageSlimes) >= 2 ,rif(@menu == 6, "► ") + l("Open Recipe Book")), + rif( true ,rif(@menu == 7, "► ") + l("Read Rules")), l("Close"); switch(@menu) @@ -278,6 +279,13 @@ OnInit: PetcaringBook(); break; case 6: + mesc l("WARNING: You still need the @@ to learn new recipes!", getitemlink(RecipeBook)), 1; + next; + closeclientdialog; + doevent("#RecipeBook::OnUse"); + end; + break; + case 7: GameRules(); break; default: |