diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-07-20 05:14:45 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-07-20 05:14:45 -0300 |
commit | a4a9a141d88169f591762b1b4b8f593360c52189 (patch) | |
tree | fc90d8b2517fae14ccf7a9c2a718365d538df9a2 /db/re/item_db.conf | |
parent | 6208b601a081455c80b26cb2b81f364b996e26e8 (diff) | |
download | serverdata-a4a9a141d88169f591762b1b4b8f593360c52189.tar.gz serverdata-a4a9a141d88169f591762b1b4b8f593360c52189.tar.bz2 serverdata-a4a9a141d88169f591762b1b4b8f593360c52189.tar.xz serverdata-a4a9a141d88169f591762b1b4b8f593360c52189.zip |
countitem(RecipeBook) → CRAFTQUEST checks.
This is more reliable, and allows JSaves Grimorium to take over Recipe Book.
Diffstat (limited to 'db/re/item_db.conf')
-rw-r--r-- | db/re/item_db.conf | 22 |
1 files changed, 11 insertions, 11 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; |