diff options
Diffstat (limited to 'npc/items')
-rw-r--r-- | npc/items/books.txt | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/npc/items/books.txt b/npc/items/books.txt index ce8ed1441..66040f332 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -169,8 +169,8 @@ OnInit: rif( MAGIC_LVL >= 2 ,rif(@menu == 1, "► ") + l("Ch 1 — Prologue")), rif( MAGIC_EXP ,rif(@menu == 2, "► ") + l("Ch 2 — Mana Magic vs Common Magic")), rif( MAGIC_LVL >= 2 ,rif(@menu == 3, "► ") + l("Ch 3 — Subclass")), - rif( false ,rif(@menu == 4, "► ") + l("Ch 4 — Casting")), - rif( false ,rif(@menu == 5, "► ") + l("Ch 5 — Reeling")), + rif( true ,rif(@menu == 4, "► ") + l("Open Fishing Book")), + rif( true ,rif(@menu == 5, "► ") + l("Read Rules")), l("Close"); switch(@menu) @@ -260,15 +260,12 @@ OnInit: next; break; case 4: - narrator S_FIRST_BLANK_LINE | S_LAST_NEXT, - l("-"), - l("-"), - l("-"); + closeclientdialog; + doevent "#Book-Fishing1::OnUse"; + end; break; case 5: - narrator S_FIRST_BLANK_LINE | S_LAST_NEXT, - l("-"), - l("-"); + GameRules(); break; default: close; |