From 0a30fb0211671bcb9a452ad13dd43211df7204b4 Mon Sep 17 00:00:00 2001 From: Nyt3 Date: Wed, 27 Sep 2023 17:00:08 -0400 Subject: [PATCH] Updated Forge script --- forge.lic | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/forge.lic b/forge.lic index c4b7c0ad00..6fc74f8ab4 100644 --- a/forge.lic +++ b/forge.lic @@ -148,14 +148,11 @@ class Forge return if @recipe_name.include?('temper') if settings.master_crafting_book - DRC.bput("turn my #{settings.master_crafting_book} to discipline #{@book_type}", 'You turn the') if settings.master_crafting_book - DRC.bput("turn my #{settings.master_crafting_book} to page #{DRCC.find_recipe(@chapter, @recipe_name, settings.master_crafting_book)}", 'You turn your', 'The .* is already') - DRC.bput("study my #{settings.master_crafting_book}", 'Roundtime') + DRCC.find_recipe2(@chapter, @recipe_name, settings.master_crafting_book, @book_type) else DRCC.get_crafting_item("#{@book_type} book", @bag, @bag_items, @forging_belt) echo('*** You will need to upgrade to a journeyman or master book before 176 ranks! ***') if DRSkill.getrank('Forging') == 175 - DRC.bput("turn my book to page #{DRCC.find_recipe(@chapter, @recipe_name)}", 'You turn your', 'The book is already') - DRC.bput('study my book', 'Roundtime') + DRCC.find_recipe2(@chapter, @recipe_name) DRCC.stow_crafting_item("book", @bag, @forging_belt) end end