From 7c9b2a6ce96462ea020f572e4e70f7e7404df52d Mon Sep 17 00:00:00 2001 From: ackis Date: Sun, 21 Dec 2008 08:42:20 +0000 Subject: [PATCH] Miner update to help with class flags --- ARLDataminer.rb | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/ARLDataminer.rb b/ARLDataminer.rb index 3e40531..b15f283 100644 --- a/ARLDataminer.rb +++ b/ARLDataminer.rb @@ -777,8 +777,8 @@ EOF flags << classes["Rogue"] << classes["Warlock"] << classes["Warrior"] else details[:classes].split(",").each do |ctype| - if classes.has_key?(ctype) - flags << classes[ctype] + if classes.has_key?(ctype.lstrip) + flags << classes[ctype.lstrip] end end end @@ -3692,6 +3692,12 @@ $skilllevelmap = { "Scroll of Intellect VIII" => 410, "Scroll of Strength VIII" => 415, # Jewelcrafting + "Sapphire Signet" => 275, + "Onslaught Ring" => 280, + "Sapphire Pendent of Winter Night" => 280, + "Glowing Thorium Band" => 280, + "Emerald Lion Ring" => 290, + "Living Emerald Pendent" => 290, "Heavy Copper Ring" => 5, "Malachite Pendant" => 20, "Prospecting" => 20, @@ -4509,6 +4515,7 @@ engspecaillist = { 41319 => {:id => "class", :type => [22]}, 41320 => {:id => "class", :type => [24, 26, 29]}, 41321 => {:id => "class", :type => [26]}, + #46111 => {:id => "class", :type => [24, 26, 29]}, 56465 => {:id => "class", :type => [24, 26, 29]}, 56480 => {:id => "class", :type => [21, 25, 30]}, 56481 => {:id => "class", :type => [22]}, -- 1.7.9.5