killermonkey99@47: --[[--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--)) killermonkey99@47: killermonkey99@47: RecipeProfit by -[@project-author@]- killermonkey99@47: killermonkey99@47: Rev: @project-revision@ killermonkey99@47: Updated: @file-date-iso@ killermonkey99@47: killermonkey99@47: --))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--)) killermonkey99@47: killermonkey99@47: URL: killermonkey99@47: http://www.wrathguides.com/ killermonkey99@47: killermonkey99@47: License: killermonkey99@47: This file is a part of "RecipeProfit for GatherMate." killermonkey99@47: killermonkey99@47: This program is free software; you can redistribute it and/or killermonkey99@47: modify it under the terms of the GNU General Public License killermonkey99@47: as published by the Free Software Foundation, either version 3 killermonkey99@47: of the License, or (at your option) any later version. killermonkey99@47: killermonkey99@47: This program is distributed in the hope that it will be useful, killermonkey99@47: but WITHOUT ANY WARRANTY; without even the implied warranty of killermonkey99@47: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the killermonkey99@47: GNU General Public License for more details. killermonkey99@47: killermonkey99@47: You should have received a copy of the GNU General Public License killermonkey99@47: along with Foobar. If not, see . killermonkey99@47: killermonkey99@47: Note: killermonkey99@47: This program's source code is specifically designed to work with killermonkey99@47: World of Warcraft's interpreted AddOn system. killermonkey99@47: killermonkey99@47: You have an implicit license to use this program with these facilities killermonkey99@47: since that is it's designated purpose as per: killermonkey99@47: http://www.fsf.org/licensing/licenses/gpl-faq.html#InterpreterIncompat killermonkey99@47: killermonkey99@47: --]]--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--))--)) killermonkey99@47: killermonkey99@47: killermonkey99@47: RECIPEPROFIT_location_cache = { killermonkey99@51: ["Jutak"] = { killermonkey99@51: ["y"] = 0.7408881187438965, killermonkey99@51: ["x"] = 0.4155560731887817, killermonkey99@51: ["map"] = 673, killermonkey99@51: }, killermonkey99@51: ["Blixrez Goodstitch"] = { killermonkey99@51: ["y"] = 0.7414151430130005, killermonkey99@51: ["x"] = 0.4281085133552551, killermonkey99@51: ["map"] = 673, killermonkey99@51: }, killermonkey99@51: ["Mazk Snipeshot"] = { killermonkey99@51: ["y"] = 0.7023801207542419, killermonkey99@51: ["x"] = 0.4324219226837158, killermonkey99@51: ["map"] = 673, killermonkey99@51: }, killermonkey99@51: ["Glyx Brewright"] = { killermonkey99@51: ["y"] = 0.7498214840888977, killermonkey99@51: ["x"] = 0.4265729784965515, killermonkey99@51: ["map"] = 673, killermonkey99@51: }, killermonkey99@51: ["Xizk Goodstitch"] = { killermonkey99@51: ["y"] = 0.730360746383667, killermonkey99@51: ["x"] = 0.4357856512069702, killermonkey99@51: ["map"] = 673, killermonkey99@51: }, killermonkey99@51: ["Nina Lightbrew"] = { killermonkey99@51: ["y"] = 0.1597689986228943, killermonkey99@51: ["x"] = 0.6244959235191345, killermonkey99@51: ["map"] = 19, killermonkey99@51: }, killermonkey99@47: } killermonkey99@47: killermonkey99@51: RECIPEPROFIT_blacklist = { killermonkey99@51: "13435", -- [1] killermonkey99@51: "23064", -- [2] killermonkey99@51: "23010", -- [3] killermonkey99@51: "13433", -- [4] killermonkey99@51: "15165", -- [5] killermonkey99@51: "8137", -- [6] killermonkey99@51: "8139", -- [7] killermonkey99@51: "11278", -- [8] killermonkey99@51: "2381", -- [9] killermonkey99@51: "9179", killermonkey99@51: } killermonkey99@51: killermonkey99@51: do killermonkey99@51: for k, v in pairs(RECIPEPROFIT_database) do killermonkey99@51: if(RECIPEPROFIT_location_cache[v.vendor]) then killermonkey99@51: v.x = RECIPEPROFIT_location_cache[v.vendor].x * 100 killermonkey99@51: v.y = RECIPEPROFIT_location_cache[v.vendor].y * 100 killermonkey99@51: v.realmap = RECIPEPROFIT_location_cache[v.vendor].map killermonkey99@47: end killermonkey99@47: end killermonkey99@47: end killermonkey99@47: killermonkey99@47: