diff options
-rw-r--r-- | db/re/item_db.conf | 22 | ||||
-rw-r--r-- | npc/003-8/intensebeard.txt | 2 | ||||
-rw-r--r-- | npc/items/books.txt | 2 |
3 files changed, 13 insertions, 13 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 33bb56f43..e6e842764 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -13536,7 +13536,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem AlchemyBlueprintA, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13560,7 +13560,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem AlchemyBlueprintB, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13587,7 +13587,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem AlchemyBlueprintC, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13614,7 +13614,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem AlchemyBlueprintD, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13641,7 +13641,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem AlchemyBlueprintE, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13665,7 +13665,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem EquipmentBlueprintA, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13689,7 +13689,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem EquipmentBlueprintB, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13716,7 +13716,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem EquipmentBlueprintC, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13743,7 +13743,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem EquipmentBlueprintD, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13770,7 +13770,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem EquipmentBlueprintE, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; @@ -13794,7 +13794,7 @@ item_db: ( Sell: 0 Weight: 40 Script: <" - if (!countitem(RecipeBook)) { + if (!CRAFTQUEST) { getitem AncientBlueprint, 1; dispbottom l("You need a @@ to use this.", getitemlink(RecipeBook)); end; diff --git a/npc/003-8/intensebeard.txt b/npc/003-8/intensebeard.txt index 0ee951b68..cf095e238 100644 --- a/npc/003-8/intensebeard.txt +++ b/npc/003-8/intensebeard.txt @@ -12,7 +12,7 @@ goto L_SemQuest; if (!getskilllv(TMW2_CRAFT)) goto L_Learn; - if (!countitem(RecipeBook)) + if (!countitem(RecipeBook) && !countitem(JesusalvaGrimorium)) goto L_SemLivro; mesn; diff --git a/npc/items/books.txt b/npc/items/books.txt index 176af98e1..bafb5be07 100644 --- a/npc/items/books.txt +++ b/npc/items/books.txt @@ -182,7 +182,7 @@ OnInit: rif2(3, MAGIC_LVL, l("Ch 3 — Subclass")), rif2(4, true, l("Open Fishing Book")), rif2(5, true, l("Open Petcaring Book")), - rif2(6, getq(NivalisQuest_BlueSageSlimes) >= 2, l("Open Recipe Book")), + rif2(6, CRAFTQUEST, l("Open Recipe Book")), rif2(7, true, l("Read Rules")), l("Close"); |