diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-06-20 11:54:28 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-06-20 11:54:28 -0300 |
commit | a0f416199be381e3234b6b44bc5a500fab719fe9 (patch) | |
tree | e1950bd4e8b11b45661f2bf434df9d7c7db39277 /npc/items/books.txt | |
parent | 72c6f6154faef14bbdd305e56619c38beff8ff34 (diff) | |
download | serverdata-a0f416199be381e3234b6b44bc5a500fab719fe9.tar.gz serverdata-a0f416199be381e3234b6b44bc5a500fab719fe9.tar.bz2 serverdata-a0f416199be381e3234b6b44bc5a500fab719fe9.tar.xz serverdata-a0f416199be381e3234b6b44bc5a500fab719fe9.zip |
Fixes to JSaves' Grimorium
Diffstat (limited to 'npc/items/books.txt')
-rw-r--r-- | npc/items/books.txt | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/npc/items/books.txt b/npc/items/books.txt index 5b44e529e..072d8dda3 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -163,18 +163,20 @@ OnInit: mes ""; select - rif(@menu == 1, "► ") + l("Ch 1 — Fishing apparatus"), - rif(@menu == 2, "► ") + l("Ch 2 — Baits"), - rif(@menu == 3, "► ") + l("Ch 3 — Location"), - rif(@menu == 4, "► ") + l("Ch 4 — Casting"), - rif(@menu == 5, "► ") + l("Ch 5 — Reeling"); + rif( MAGIC_LVL >= 2 ,rif(@menu == 1, "► ") + l("Ch 1 — Prologue")), + rif( false ,rif(@menu == 2, "► ") + l("Ch 2 — Baits")), + rif( false ,rif(@menu == 3, "► ") + l("Ch 3 — Location")), + rif( false ,rif(@menu == 4, "► ") + l("Ch 4 — Casting")), + rif( false ,rif(@menu == 5, "► ") + l("Ch 5 — Reeling")), + l("Close"); switch(@menu) { case 1: narrator S_FIRST_BLANK_LINE | S_LAST_NEXT, - l("You'll want your fishing rod to be flexible but solid."), - l("Comfortable grip is important especially for newcomers, since they'll be holding it for quite a while."); + l("Mana is something which existed since the being, but nobody knows much about."), + l("This book will write itself, and reveal you the Secret Of Mana."), + l("Give it time, increase your magic power, and you'll find out the truth."); break; case 2: narrator S_FIRST_BLANK_LINE | S_LAST_NEXT, @@ -204,6 +206,8 @@ OnInit: l("To successfully catch a fish, you need to pull up your hook by clicking it, right after it submerges."), l("Should you be too quick or wait too long, you will most likely fail."); break; + default: + close; } } while (true); @@ -221,7 +225,7 @@ OnUse: bye; OnInit: - .book_name$ = getitemname(FishingGuideVolI); + .book_name$ = getitemname(JesusalvaGrimorium); .sex = G_OTHER; .distance = 1; end; |