content stringlengths 5 1.05M |
|---|
local M = {}
function M.to_str(table, lvl, tbls_seen)
lvl = lvl or 1
local indent = string.rep(' ', lvl)
if type(table) ~= "table" then
return tostring(table)
end
if tbls_seen == nil then tbls_seen = {} end
local res = '{'
for key, value in pairs(table) do
if type(value) == "table" then
if tbls_seen[value] then
res = res .. "\n" .. indent .. tostring(key) .. "=**recursion**,"
else
tbls_seen[value] = true
res = res .. "\n" .. indent .. tostring(key) .. "="
.. M.to_str(value, lvl + 1, tbls_seen) .. ","
end
else
if type(value) == "string" then value = '"'..value..'"' end
res = res .. "\n" .. indent .. tostring(key) .. "=" .. tostring(value)
.. ","
end
end
res = res .. " }"
return res
end
function M.p(val)
print(M.to_str(val))
end
---Penlight pretty print function
M.pp = require 'pl.pretty'.dump
---Table to string convertion function
M.s = require 'pl.pretty'.write
return M
|
enemy = {}
enemies_controller = {}
enemies_controller.enemies = {}
enemies_controller.image = love.graphics.newImage('enemy.png')
function love.load()
background_image = love.graphics.newImage('background.jpeg')
love.window.setFullscreen(true, "desktop")
player={}
player.x=love.graphics.getWidth( )/2-5
player.y=love.graphics.getHeight( )-40
player.speed=5
player.image = love.graphics.newImage('player.png')
player.bullets={}
player.cooldown=20
player.fire=function()
if player.cooldown<=0 then
player.cooldown=20
bullet={}
bullet.x=player.x+35
bullet.y=player.y
table.insert(player.bullets,bullet)
end
end
for i=0, 10 do
enemies_controller:spawnEnemy((i*love.graphics.getWidth( )/10)+love.graphics.getWidth( )/40, 0)
end
for i=0, 10 do
enemies_controller:spawnEnemy((i*love.graphics.getWidth( )/10)+love.graphics.getWidth( )/40, 60)
end
for i=0, 10 do
enemies_controller:spawnEnemy((i*love.graphics.getWidth( )/10)+love.graphics.getWidth( )/40, 120)
end
end
function enemies_controller:spawnEnemy(x, y)
enemy = {}
enemy.x = x
enemy.y = y
enemy.width = 50
enemy.height = 50
enemy.bullets = {}
enemy.cooldown = 20
enemy.speed = .1
table.insert(self.enemies, enemy)
end
function enemy:fire()
if self.cooldown <= 0 then
self.cooldown = 20
bullet = {}
bullet.x = self.x + 35
bullet.y = self.y
table.insert(self.bullets, bullet)
end
end
function checkCollisions(enemies, bullets)
for i, e in ipairs(enemies) do
for _, b in pairs(bullets) do
if b.y <= e.y + e.height and b.x > e.x and b.x < e.x + e.width then
table.remove(enemies, i)
table.remove(bullets, _)
end
end
end
end
function love.update(dt)
--Movement
player.cooldown=player.cooldown-1
if love.keyboard.isDown("right") then
player.x=player.x+player.speed
elseif love.keyboard.isDown("left") then
player.x=player.x-player.speed
end
if love.keyboard.isDown("space") then
player.fire()
end
if love.keyboard.isDown("escape") then
love.event.quit()
end
if enemies_controller.enemies == 0 then
game_win = true
end
for _,e in pairs(enemies_controller.enemies) do
if e.y >= 3*(love.graphics.getHeight()/4) then
game_over = true
end
e.y = e.y + 1 * e.speed
end
for i,v in ipairs(player.bullets) do
if v.y<-10 then
table.remove(player.bullets,i)
end
v.y=v.y-10
end
checkCollisions(enemies_controller.enemies, player.bullets)
end
function love.draw()
if game_over then
love.event.quit()
end
for i = 0, love.graphics.getWidth() / background_image:getWidth() do
for j = 0, love.graphics.getHeight() / background_image:getHeight() do
--Drawing background
love.graphics.setColor(255,255, 255)
love.graphics.draw(background_image, i * background_image:getWidth(), j * background_image:getHeight())
--Yellow Line
love.graphics.setColor(255,255, 0)
love.graphics.line( 0, 3*(love.graphics.getHeight()/4), love.graphics.getWidth(), 3*(love.graphics.getHeight()/4))
--Draws Exit info
love.graphics.setColor(255,255, 255)
love.graphics.print( "ESC to Exit", love.graphics.getWidth()/2-20, 0)
end
end
love.graphics.setColor(255, 0, 0)
love.graphics.draw(player.image, player.x, player.y)
for _,e in pairs(enemies_controller.enemies) do
love.graphics.setColor(0, 255, 0)
love.graphics.draw(enemies_controller.image, e.x, e.y, 0)
end
for _,v in pairs(player.bullets) do
love.graphics.setColor(255, 0, 0)
love.graphics.rectangle("fill", v.x, v.y, 10, 10)
end
end |
// NE PAS TOUCHER AU "TEAM_MUSEUM =". L'addon ne marchera pas comme prévu.
TEAM_MUSEUM = DarkRP.createJob("Museum Manager", {
color = Color(225, 75, 75, 255),
model = {"models/player/group03/male_04.mdl"},
description = [[You are the Museum Manager, you must manage your museum. Be careful about heisters !]],
weapons = {},
command = "museumg",
max = 2,
salary = 250, -- I think you should give a salary to the museum manager to make them want use this job !
admin = 0,
vote = false,
category = "Citizens",
hasLicense = false
})
TEAM_RAIDER = DarkRP.createJob("Raider", {
color = Color(225, 75, 75, 255),
model = {"models/player/group03/male_04.mdl"},
description = [[You are a "museum raider", you should rob the museum to make money...]],
weapons = {},
command = "teamraider",
max = 2,
salary = 0,
admin = 0,
vote = false,
category = "Citizens",
hasLicense = false
})
DarkRP.createCategory{
name = "Museum",
categorises = "entities",
startExpanded = true,
color = Color(255, 107, 0, 255),
canSee = function(ply) return TEAM_MUSEUM == ply:Team() end,
sortOrder = 104
}
DarkRP.createEntity("Painting", {
ent = "mr_painting",
model = "models/props/museum_robbery/sycreations/security_frame/ts.mdl",
price = 200,
max = 10,
cmd = "buymrb_painting",
allowed = TEAM_MUSEUM,
category = "Museum"
})
DarkRP.createEntity("Camera", {
ent = "mr_camera",
model = "models/blackghost/blackghost_camera_pilot.mdl",
price = 100,
max = 4,
cmd = "buymrb_cam",
allowed = TEAM_MUSEUM,
category = "Museum",
isillegal = true,
})
DarkRP.createEntity("Alarm", {
ent = "mr_alarm",
model = "models/props_wasteland/speakercluster01a.mdl",
price = 80,
max = 4,
cmd = "buymrb_alarm",
allowed = TEAM_MUSEUM,
category = "Museum"
})
DarkRP.createEntity("Laser", {
ent = "mr_laser",
model = "models/props/sycreations/laser/laser.mdl",
price = 120,
max = 6,
cmd = "buymbr_laser",
allowed = TEAM_MUSEUM,
category = "Museum"
})
DarkRP.createEntity("Computer", {
ent = "mr_computer",
model = "models/props/cs_office/computer.mdl",
price = 120,
max = 1,
cmd = "buymrb_computer",
allowed = TEAM_MUSEUM,
category = "Museum"
})
|
options = {}
options.resolutions = {}
function options.load()
options.applySettings()
options.createPanel()
end
function options.applySettings()
options.resolutions[#options.resolutions+1] = "1200x768"
options.resolutions[#options.resolutions+1] = "1200x900"
options.resolutions[#options.resolutions+1] = "1280x1024"
options.resolutions[#options.resolutions+1] = "1440x900"
options.resolutions[#options.resolutions+1] = "1680x1050"
options.resolutions[#options.resolutions+1] = "1600x900"
options.resolutions[#options.resolutions+1] = "1600x1200"
options.resolutions[#options.resolutions+1] = "1366x768"
options.resolutions[#options.resolutions+1] = "1920x1200"
options.resolutions[#options.resolutions+1] = "2560x1600"
options.resolutions[#options.resolutions+1] = "1280x720"
options.resolutions[#options.resolutions+1] = "1920x1080"
options.resolutions[#options.resolutions+1] = "2560x1440"
options.resolutions[#options.resolutions+1] = "2560x1600"
if love.filesystem.exists("cfg/settings.ini") == false then
local defaultSettings =
{
settings =
{
vsync = true,
resolutionwidth = 1280,
resolutionheight = 720,
fullscreen = false,
borderless = true,
debug = false,
},
};
LIP.save("cfg/settings.ini", defaultSettings)
end
options.settings = LIP.load('cfg/settings.ini');
love.window.setMode(options.settings.settings.resolutionwidth, options.settings.settings.resolutionheight, {vsync = options.settings.settings.vsync, fullscreen = options.settings.settings.fullscreen, borderless = options.settings.settings.borderless})
options.resize()
end
function options.resize()
global.screenWidth = love.graphics.getWidth()
global.screenHeight = love.graphics.getHeight()
global.centerWidth = (global.screenWidth / 2) * camera.scale
global.centerHeight = (global.screenHeight / 2) * camera.scale
-- Horrible hack, eww
lighting.world:refreshScreenSize(love.graphics.getWidth() * camera.scale, love.graphics.getHeight() * camera.scale)
end
function options.createPanel()
local optionsframe = loveframes.Create("frame")
optionsframe:SetName("Options")
optionsframe:SetDraggable(false)
optionsframe:ShowCloseButton(false)
optionsframe:SetWidth(global.screenWidth - 50)
optionsframe:SetHeight(global.screenHeight - 50)
optionsframe:Center()
optionsframe:SetState("options")
end |
--[[
Global Persistence Shared Setup File
Copyright 2020 Lex Robinson
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
]] --
_G.globalpersist = {version = "2.0.0"}
local function noop()
end
---
--- Registers a sandbox entity that someone may have been expecting to
--- exist/work in their persistances
--- @param name string
local function setupEntity(name)
if scripted_ents.Get(name) then
return
end
_G.ENT = {Folder = "entities/" .. name}
include("sandbox/entities/entities/" .. name .. ".lua")
scripted_ents.Register(ENT, name)
baseclass.Set(name, scripted_ents.Get(name))
_G.ENT = nil
end
---
--- Extracts the useful bits of a tool (eg setting up duplicator configs)
--- without actually creating the tool or anything related to it
--- @param name string
local function setupTool(name)
_G.TOOL = {ClientConVar = {}, ServerConVar = {}, BuildConVarList = noop}
local fname = "sandbox/entities/weapons/gmod_tool/stools/" .. name .. ".lua"
AddCSLuaFile(fname)
include(fname)
_G.TOOL = nil
end
local function onInitialize()
local gm = gmod.GetGamemode()
if gm.IsSandboxDerived then
return
end
-- Entity modifiers
setupTool("colour")
setupTool("material")
setupTool("paint")
setupTool("trails")
setupTool("eyeposer")
-- For constraints
setupEntity("gmod_anchor")
setupEntity("gmod_winch_controller")
-- Useful sandbox entities
setupEntity("gmod_light")
setupTool("light")
setupEntity("gmod_lamp")
setupTool("lamp")
setupEntity("gmod_balloon")
setupTool("balloon")
-- Wire fixes
setupEntity("gmod_button")
end
hook.Add("Initialize", "Global Persistence Shared", onInitialize)
|
if (AAPClassic.Faction == "Alliance") then
AAPClassic.PathA1 = {
--------- test QHelper
["QuestHelper"] = {
{
["Qpart"] = {
},
["Done"] = {
},
},
{
["Qpart"] = {
},
["Done"] = {
},
},
},
["1-5Explorer-old"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8932.8,
["x"] = -136,
},
}, -- [1]
{
["TT"] = {
["y"] = -8902.2,
["x"] = -162,
},
["Done"] = {
783, -- [1]
},
}, -- [2]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8932.7,
["x"] = -136.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -8905.5,
["x"] = -134.9,
},
["Range"] = 6.24,
["CRange"] = 5261,
["TT"] = {
["y"] = -8905.5,
["x"] = -134.9,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -8872.5,
["x"] = -149.2,
},
["Range"] = 5.99,
["CRange"] = 5261,
["TT"] = {
["y"] = -8872.5,
["x"] = -149.2,
},
}, -- [5]
{
["TT"] = {
["y"] = -8868.8,
["x"] = -162,
},
["Done"] = {
5261, -- [1]
},
}, -- [6]
{
["Trigger"] = {
["y"] = -9039.8,
["x"] = -96.5,
},
["Range"] = 8.26,
["CRange"] = 7271,
["TT"] = {
["y"] = -9039.8,
["x"] = -96.5,
},
}, -- [7]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044,
["x"] = -45.7,
},
["LeaveQuests"] = {
7, -- [1]
33, -- [2]
},
}, -- [8]
{
["Explore"] = "Discovered: Elwynn Forest",
["Trigger"] = {
["y"] = -9125.3,
["x"] = -82,
},
["Range"] = 18.79,
["TT"] = {
["y"] = -9125.3,
["x"] = -82,
},
},
{
["Explore"] = "Discovered: Crystal Lake",
["Trigger"] = {
["y"] = -9347.3,
["x"] = -115,
},
["Range"] = 0.75,
["TT"] = {
["y"] = -9347.3,
["x"] = -115,
},
},
{
["ExtraLine"] = "go into the Inn",
["CRange"] = 2158,
["Trigger"] = {
["y"] = -9458.3,
["x"] = 47,
},
["Range"] = 3.95,
["TT"] = {
["y"] = -9458.3,
["x"] = 47,
},
}, -- [12]
{
["TT"] = {
["y"] = -9462.2,
["x"] = 16.8,
},
["Done"] = {
2158, -- [1]
},
}, -- [13]
{
["TT"] = {
["y"] = -9462.7,
["x"] = 16.7,
},
["SetHS"] = 7271,
}, -- [14]
{
["ExtraLine"] = "Exit Inn",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -9458.2,
["x"] = 46.9,
},
["Range"] = 2.55,
["TT"] = {
["y"] = -9458.2,
["x"] = 46.9,
},
}, -- [15]
{
["Trigger"] = {
["y"] = -9479.7,
["x"] = 45,
},
["Range"] = 5.46,
["CRange"] = 7271,
["TT"] = {
["y"] = -9479.7,
["x"] = 45,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9607,
["x"] = -223,
},
["Range"] = 13.75,
["CRange"] = 7271,
["TT"] = {
["y"] = -9607,
["x"] = -223,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9602,
["x"] = -475.9,
},
["Range"] = 10.17,
["CRange"] = 7271,
["TT"] = {
["y"] = -9602,
["x"] = -475.9,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9627.5,
["x"] = -622.3,
},
["Range"] = 17.46,
["CRange"] = 7271,
["TT"] = {
["y"] = -9627.5,
["x"] = -622.3,
},
}, -- [4]
{
["Explore"] = "Discovered: Tower of Azora",
["Trigger"] = {
["y"] = -9592.7,
["x"] = -676,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9592.7,
["x"] = -676,
},
},
{
["Trigger"] = {
["y"] = -9652.3,
["x"] = -774.8,
},
["Range"] = 22.77,
["CRange"] = 7271,
["TT"] = {
["y"] = -9652.3,
["x"] = -774.8,
},
}, -- [1]
{
["Explore"] = "Discovered: Brackwell Pumpkin Patch",
["Trigger"] = {
["y"] = -9676.5,
["x"] = -869.3,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9676.5,
["x"] = -869.3,
},
},
{
["Trigger"] = {
["y"] = -9593,
["x"] = -927,
},
["Range"] = 24.97,
["CRange"] = 7271,
["TT"] = {
["y"] = -9593,
["x"] = -927,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9596.5,
["x"] = -1099,
},
["Range"] = 12.09,
["CRange"] = 7271,
["TT"] = {
["y"] = -9596.5,
["x"] = -1099,
},
}, -- [4]
{
["Explore"] = "Discovered: Eastvale Logging Camp",
["Trigger"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
["Range"] = 0.61,
["TT"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
},
{
["Trigger"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
["Range"] = 12.72,
["CRange"] = 7271,
["TT"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9435.7,
["x"] = -1093.5,
},
["Range"] = 7.4,
["CRange"] = 7271,
["TT"] = {
["y"] = -9435.7,
["x"] = -1093.5,
},
}, -- [2]
{
["Explore"] = "Discovered: Stone Cairn Lake",
["Trigger"] = {
["y"] = -9385.3,
["x"] = -1062.4,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9385.3,
["x"] = -1062.4,
},
},
{
["Trigger"] = {
["y"] = -9605,
["x"] = -1225.3,
},
["Range"] = 52.02,
["CRange"] = 7271,
["TT"] = {
["y"] = -9605,
["x"] = -1225.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9718.3,
["x"] = -1385.4,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Ridgepoint Tower",
["TT"] = {
["y"] = -9718.3,
["x"] = -1385.4,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9650.2,
["x"] = -1434.5,
},
["Range"] = 21.09,
["CRange"] = 7271,
["TT"] = {
["y"] = -9650.2,
["x"] = -1434.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9613.5,
["x"] = -1713,
},
["Range"] = 28.91,
["CRange"] = 7271,
["TT"] = {
["y"] = -9613.5,
["x"] = -1713,
},
}, -- [1]
{
["ExtraLine"] = "Die and spirit Rez",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -9393.2,
["x"] = -2021.4,
},
["Range"] = 44.96,
["TT"] = {
["y"] = -9584.8,
["x"] = -2001.9,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9337.7,
["x"] = -2026.1,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Lake Everstill",
["TT"] = {
["y"] = -9337.7,
["x"] = -2026.1,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9252.8,
["x"] = -2009.9,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Lakeshire",
["TT"] = {
["y"] = -9252.8,
["x"] = -2009.9,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9132.5,
["x"] = -2001,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Redridge Canyons",
["TT"] = {
["y"] = -9132.5,
["x"] = -2001,
},
}, -- [2]
{
["ExtraLine"] = "Die and spirit Rez",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -9392.8,
["x"] = -2021.4,
},
["Range"] = 44.96,
["TT"] = {
["y"] = -9132.5,
["x"] = -2001,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9434.7,
["x"] = -2234.2,
},
["GetFP"] = 7271,
["Range"] = 0.69,
["TT"] = {
["y"] = -9434.7,
["x"] = -2234.2,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9552.5,
["x"] = -2200.4,
},
["Range"] = 26.22,
["CRange"] = 7271,
["TT"] = {
["y"] = -9552.5,
["x"] = -2200.4,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9630.3,
["x"] = -2148.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Lakeridge Highway",
["TT"] = {
["y"] = -9630.3,
["x"] = -2148.7,
},
}, -- [4]
{
["UseHS"] = 48313,
["TT"] = {
["y"] = -9630.3,
["x"] = -2148.7,
},
["Button"] = {
["22345678-1"] = 6948,
},
}, -- [16]
{
["Trigger"] = {
["y"] = -9774,
["x"] = 114.9,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Fargodeep Mine",
["TT"] = {
["y"] = -9774,
["x"] = 114.9,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9774,
["x"] = 114.9,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Maclure Vineyards",
["TT"] = {
["y"] = -9774,
["x"] = 114.9,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9956.3,
["x"] = -43,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Jerod's Landing",
["TT"] = {
["y"] = -9956.3,
["x"] = -43,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10071.5,
["x"] = -92.3,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Darkened Bank",
["TT"] = {
["y"] = -10071.5,
["x"] = -92.3,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9868.5,
["x"] = 404.6,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Stonefield Farm",
["TT"] = {
["y"] = -9868.5,
["x"] = 404.6,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9738.8,
["x"] = 564.9,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Forest's Edge",
["TT"] = {
["y"] = -9738.8,
["x"] = 564.9,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9732,
["x"] = 670.2,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Westbrook Garrison",
["TT"] = {
["y"] = -9732,
["x"] = 670.2,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9849,
["x"] = 918.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Jansen Stead",
["TT"] = {
["y"] = -9849,
["x"] = 918.7,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10069.5,
["x"] = 1134.3,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Saldean's Farm",
["TT"] = {
["y"] = -10069.5,
["x"] = 1134.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10027.3,
["x"] = 1238.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Furlbrow's Pumpkin Farm",
["TT"] = {
["y"] = -10027.3,
["x"] = 1238.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10119.2,
["x"] = 1343.2,
},
["Range"] = 0.61,
["Explore"] = "Discovered: The Molsen Farm",
["TT"] = {
["y"] = -10119.2,
["x"] = 1343.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10030.5,
["x"] = 1424,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Jangolode Mine",
["TT"] = {
["y"] = -10030.5,
["x"] = 1424,
},
}, -- [2]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -10546.5,
["x"] = 1197.7,
},
["Range"] = 32.62,
["TT"] = {
["y"] = -10030.5,
["x"] = 1424,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10643.3,
["x"] = 1274.9,
},
["Range"] = 18.83,
["Explore"] = "Discovered: Stendel's Pond",
["TT"] = {
["y"] = -10643.3,
["x"] = 1274.9,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10627.8,
["x"] = 1037.7,
},
["GetFP"] = 179,
["Range"] = 0.75,
["TT"] = {
["y"] = -10627.8,
["x"] = 1037.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10807.3,
["x"] = 992.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Dead Acre",
["TT"] = {
["y"] = -10807.3,
["x"] = 992.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10977.5,
["x"] = 987.6,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Dust Plains",
["TT"] = {
["y"] = -10977.5,
["x"] = 987.6,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -11018.3,
["x"] = 1176,
},
["Range"] = 0.75,
["Explore"] = "Discovered: The Dagger Hills",
["TT"] = {
["y"] = -11018.3,
["x"] = 1176,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Moonbrook",
["TT"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10513.7,
["x"] = 1634.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Alexston Farmstead",
["TT"] = {
["y"] = -10513.7,
["x"] = 1634.7,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -10450.3,
["x"] = 1682.5,
},
["Range"] = 24.27,
["CRange"] = 7271,
["TT"] = {
["y"] = -10450.3,
["x"] = 1682.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10421,
["x"] = 1743.5,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Gold Coast Quarry",
["TT"] = {
["y"] = -10421,
["x"] = 1743.5,
},
}, -- [2]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -10546.5,
["x"] = 1197.7,
},
["Range"] = 32.62,
["TT"] = {
["y"] = -10421,
["x"] = 1743.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10283.7,
["x"] = 735.9,
},
["Range"] = 0.61,
["Explore"] = "Discovered: The Hushed Bank",
["TT"] = {
["y"] = -10283.7,
["x"] = 735.9,
},
}, -- [2]
},
["1-5Explorer"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8932.8,
["x"] = -136,
},
}, -- [1]
{
["TT"] = {
["y"] = -8902.2,
["x"] = -162,
},
["Done"] = {
783, -- [1]
},
}, -- [2]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8932.7,
["x"] = -136.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -8905.5,
["x"] = -134.9,
},
["Range"] = 6.24,
["CRange"] = 5261,
["TT"] = {
["y"] = -8905.5,
["x"] = -134.9,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -8872.5,
["x"] = -149.2,
},
["Range"] = 5.99,
["CRange"] = 5261,
["TT"] = {
["y"] = -8872.5,
["x"] = -149.2,
},
}, -- [5]
{
["TT"] = {
["y"] = -8868.8,
["x"] = -162,
},
["Done"] = {
5261, -- [1]
},
}, -- [6]
{
["Trigger"] = {
["y"] = -9039.8,
["x"] = -96.5,
},
["Range"] = 8.26,
["CRange"] = 7271,
["TT"] = {
["y"] = -9039.8,
["x"] = -96.5,
},
}, -- [7]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044,
["x"] = -45.7,
},
["LeaveQuests"] = {
7, -- [1]
33, -- [2]
},
}, -- [8]
{
["Explore"] = "Discovered: Elwynn Forest",
["Trigger"] = {
["y"] = -9125.3,
["x"] = -82,
},
["Range"] = 18.79,
["TT"] = {
["y"] = -9125.3,
["x"] = -82,
},
},
{
["Explore"] = "Discovered: Crystal Lake",
["Trigger"] = {
["y"] = -9347.3,
["x"] = -115,
},
["Range"] = 0.75,
["TT"] = {
["y"] = -9347.3,
["x"] = -115,
},
},
{
["ExtraLine"] = "go into the Inn",
["CRange"] = 2158,
["Trigger"] = {
["y"] = -9458.3,
["x"] = 47,
},
["Range"] = 3.95,
["TT"] = {
["y"] = -9458.3,
["x"] = 47,
},
}, -- [12]
{
["TT"] = {
["y"] = -9462.2,
["x"] = 16.8,
},
["Done"] = {
2158, -- [1]
},
}, -- [13]
{
["TT"] = {
["y"] = -9462.7,
["x"] = 16.7,
},
["SetHS"] = 7271,
}, -- [14]
{
["ExtraLine"] = "Exit Inn",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -9458.2,
["x"] = 46.9,
},
["Range"] = 2.55,
["TT"] = {
["y"] = -9458.2,
["x"] = 46.9,
},
}, -- [15]
{
["Trigger"] = {
["y"] = -9479.7,
["x"] = 45,
},
["Range"] = 5.46,
["CRange"] = 7271,
["TT"] = {
["y"] = -9479.7,
["x"] = 45,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9607,
["x"] = -223,
},
["Range"] = 13.75,
["CRange"] = 7271,
["TT"] = {
["y"] = -9607,
["x"] = -223,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9602,
["x"] = -475.9,
},
["Range"] = 10.17,
["CRange"] = 7271,
["TT"] = {
["y"] = -9602,
["x"] = -475.9,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9627.5,
["x"] = -622.3,
},
["Range"] = 17.46,
["CRange"] = 7271,
["TT"] = {
["y"] = -9627.5,
["x"] = -622.3,
},
}, -- [4]
{
["Explore"] = "Discovered: Tower of Azora",
["Trigger"] = {
["y"] = -9592.7,
["x"] = -676,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9592.7,
["x"] = -676,
},
},
{
["Trigger"] = {
["y"] = -9652.3,
["x"] = -774.8,
},
["Range"] = 22.77,
["CRange"] = 7271,
["TT"] = {
["y"] = -9652.3,
["x"] = -774.8,
},
}, -- [1]
{
["Explore"] = "Discovered: Brackwell Pumpkin Patch",
["Trigger"] = {
["y"] = -9676.5,
["x"] = -869.3,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9676.5,
["x"] = -869.3,
},
},
{
["Trigger"] = {
["y"] = -9593,
["x"] = -927,
},
["Range"] = 24.97,
["CRange"] = 7271,
["TT"] = {
["y"] = -9593,
["x"] = -927,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9596.5,
["x"] = -1099,
},
["Range"] = 12.09,
["CRange"] = 7271,
["TT"] = {
["y"] = -9596.5,
["x"] = -1099,
},
}, -- [4]
{
["Explore"] = "Discovered: Eastvale Logging Camp",
["Trigger"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
["Range"] = 0.61,
["TT"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
},
{
["Trigger"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
["Range"] = 12.72,
["CRange"] = 7271,
["TT"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9435.7,
["x"] = -1093.5,
},
["Range"] = 7.4,
["CRange"] = 7271,
["TT"] = {
["y"] = -9435.7,
["x"] = -1093.5,
},
}, -- [2]
{
["Explore"] = "Discovered: Stone Cairn Lake",
["Trigger"] = {
["y"] = -9385.3,
["x"] = -1062.4,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9385.3,
["x"] = -1062.4,
},
},
{
["Trigger"] = {
["y"] = -9605,
["x"] = -1225.3,
},
["Range"] = 52.02,
["CRange"] = 7271,
["TT"] = {
["y"] = -9605,
["x"] = -1225.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9718.3,
["x"] = -1385.4,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Ridgepoint Tower",
["TT"] = {
["y"] = -9718.3,
["x"] = -1385.4,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9650.2,
["x"] = -1434.5,
},
["Range"] = 21.09,
["CRange"] = 7271,
["TT"] = {
["y"] = -9650.2,
["x"] = -1434.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9613.5,
["x"] = -1713,
},
["Range"] = 28.91,
["CRange"] = 7271,
["TT"] = {
["y"] = -9613.5,
["x"] = -1713,
},
}, -- [1]
{
["ExtraLine"] = "Die and spirit Rez",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -9393.2,
["x"] = -2021.4,
},
["Range"] = 44.96,
["TT"] = {
["y"] = -9584.8,
["x"] = -2001.9,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9410.2,
["x"] = -2264.2,
},
["Range"] = 7.61,
["CRange"] = 7271,
["TT"] = {
["y"] = -9410.2,
["x"] = -2264.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9279.8,
["x"] = -2274.2,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Lakeshire",
["TT"] = {
["y"] = -9279.8,
["x"] = -2274.2,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9411.3,
["x"] = -2261.4,
},
["Range"] = 8.97,
["CRange"] = 7271,
["TT"] = {
["y"] = -9411.3,
["x"] = -2261.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9434.7,
["x"] = -2234.2,
},
["GetFP"] = 7271,
["Range"] = 0.69,
["TT"] = {
["y"] = -9434.7,
["x"] = -2234.2,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9552.5,
["x"] = -2200.4,
},
["Range"] = 26.22,
["CRange"] = 7271,
["TT"] = {
["y"] = -9552.5,
["x"] = -2200.4,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9630.3,
["x"] = -2148.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Lakeridge Highway",
["TT"] = {
["y"] = -9630.3,
["x"] = -2148.7,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9684.7,
["x"] = -2049,
},
["Range"] = 20.34,
["CRange"] = 7271,
["TT"] = {
["y"] = -9684.7,
["x"] = -2049,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9723,
["x"] = -1933.5,
},
["Range"] = 12.76,
["CRange"] = 7271,
["TT"] = {
["y"] = -9723,
["x"] = -1933.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9717.3,
["x"] = -1883.3,
},
["Range"] = 16.6,
["CRange"] = 7271,
["TT"] = {
["y"] = -9717.3,
["x"] = -1883.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9868.2,
["x"] = -1726,
},
["Range"] = 15.29,
["CRange"] = 7271,
["TT"] = {
["y"] = -9868.2,
["x"] = -1726,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9918.5,
["x"] = -1689.1,
},
["Range"] = 8.99,
["CRange"] = 7271,
["TT"] = {
["y"] = -9918.5,
["x"] = -1689.1,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9912.5,
["x"] = -1647,
},
["Range"] = 0.61,
["Explore"] = "Discovered: The Darkened Bank",
["TT"] = {
["y"] = -9912.5,
["x"] = -1647,
},
}, -- [2]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -10773.8,
["x"] = -1189.3,
},
["Range"] = 29.43,
["TT"] = {
["y"] = -10026.8,
["x"] = -1540.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10891,
["x"] = -1242.1,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Tranquil Gardens Cemetery",
["TT"] = {
["y"] = -10891,
["x"] = -1242.1,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10608.3,
["x"] = -1182.3,
},
["Range"] = 24.78,
["CRange"] = 7271,
["TT"] = {
["y"] = -10608.3,
["x"] = -1182.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10513.3,
["x"] = -1258.5,
},
["GetFP"] = 7271,
["Range"] = 0.69,
["TT"] = {
["y"] = -10513.3,
["x"] = -1258.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10439.7,
["x"] = -1235.6,
},
["Range"] = 11.67,
["CRange"] = 7271,
["TT"] = {
["y"] = -10439.7,
["x"] = -1235.6,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10423.2,
["x"] = -1241.9,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Manor Mistmantle",
["TT"] = {
["y"] = -10423.2,
["x"] = -1241.9,
},
}, -- [4]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -10773.8,
["x"] = -1189.3,
},
["Range"] = 27,
["TT"] = {
["y"] = -10381,
["x"] = -1235.1,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -10786,
["x"] = -1078.5,
},
["Range"] = 14.59,
["CRange"] = 7271,
["TT"] = {
["y"] = -10786,
["x"] = -1078.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10880.2,
["x"] = -1019.8,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Rotting Orchard",
["TT"] = {
["y"] = -10880.2,
["x"] = -1019.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10811.7,
["x"] = -986,
},
["Range"] = 9.29,
["CRange"] = 7271,
["TT"] = {
["y"] = -10811.7,
["x"] = -986,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10810.8,
["x"] = -870.8,
},
["Range"] = 19.71,
["CRange"] = 7271,
["TT"] = {
["y"] = -10810.2,
["x"] = -872.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10870.7,
["x"] = -771.5,
},
["Range"] = 22.05,
["CRange"] = 7271,
["TT"] = {
["y"] = -10869,
["x"] = -773.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10938,
["x"] = -720,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Yorgen Farmstead",
["TT"] = {
["y"] = -10938,
["x"] = -720,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10970,
["x"] = -623.3,
},
["Range"] = 21.79,
["CRange"] = 7271,
["TT"] = {
["y"] = -10970,
["x"] = -623.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10915.8,
["x"] = -389.5,
},
["Range"] = 42.65,
["CRange"] = 7271,
["TT"] = {
["y"] = -10915.8,
["x"] = -389.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10948.5,
["x"] = -288.2,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Vul'Gol Ogre Mound",
["TT"] = {
["y"] = -10948.5,
["x"] = -288.2,
},
}, -- [3]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -10606.3,
["x"] = 294.5,
},
["Range"] = 19.95,
["TT"] = {
["y"] = -10962.3,
["x"] = -266.4,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10586.7,
["x"] = 295.3,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Raven Hill Cemetery",
["TT"] = {
["y"] = -10586.7,
["x"] = 295.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10725.7,
["x"] = 296,
},
["Range"] = 13.71,
["CRange"] = 7271,
["TT"] = {
["y"] = -10725.7,
["x"] = 296,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10810.3,
["x"] = 383.1,
},
["Range"] = 18.38,
["CRange"] = 7271,
["TT"] = {
["y"] = -10810.3,
["x"] = 383.1,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10870.5,
["x"] = 417.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Addle's Stead",
["TT"] = {
["y"] = -10870.5,
["x"] = 417.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10818.7,
["x"] = 432.6,
},
["Range"] = 23.52,
["CRange"] = 7271,
["TT"] = {
["y"] = -10818.7,
["x"] = 432.6,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10864.2,
["x"] = 595.4,
},
["Range"] = 10.3,
["CRange"] = 7271,
["TT"] = {
["y"] = -10864.2,
["x"] = 595.4,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10861.5,
["x"] = 640.2,
},
["Range"] = 9.16,
["CRange"] = 7271,
["TT"] = {
["y"] = -10862.7,
["x"] = 642.6,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10860.5,
["x"] = 660.9,
},
["Range"] = 9.31,
["CRange"] = 7271,
["TT"] = {
["y"] = -10860.5,
["x"] = 660.9,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10823.2,
["x"] = 646.6,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Dead Acre",
["TT"] = {
["y"] = -10823.2,
["x"] = 646.6,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10801.5,
["x"] = 626.2,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Hushed Bank",
["TT"] = {
["y"] = -10801.5,
["x"] = 626.2,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10865.2,
["x"] = 679.7,
},
["Range"] = 18.04,
["CRange"] = 7271,
["TT"] = {
["y"] = -10865.2,
["x"] = 679.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10931,
["x"] = 724,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Dust Plains",
["TT"] = {
["y"] = -10931,
["x"] = 724,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10927,
["x"] = 828.4,
},
["Range"] = 18.36,
["CRange"] = 7271,
["TT"] = {
["y"] = -10927,
["x"] = 828.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10950.5,
["x"] = 940.7,
},
["Range"] = 20.81,
["CRange"] = 7271,
["TT"] = {
["y"] = -10950.5,
["x"] = 940.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10958.2,
["x"] = 1121.9,
},
["Range"] = 22.73,
["CRange"] = 7271,
["TT"] = {
["y"] = -10958.2,
["x"] = 1121.9,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -11018.3,
["x"] = 1176,
},
["Range"] = 0.75,
["Explore"] = "Discovered: The Dagger Hills",
["TT"] = {
["y"] = -11018.3,
["x"] = 1176,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Moonbrook",
["TT"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
["Range"] = 0.69,
["CRange"] = 7271,
["TT"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
}, -- [1]
{
["ExtraLine"] = "Explore Die and spirit rez",
["Trigger"] = {
["y"] = -10898.7,
["x"] = 1239.3,
},
["Range"] = 18.83,
["Explore"] = "Discovered: Stendel's Pond",
["TT"] = {
["y"] = -10898.5,
["x"] = 1239.5,
},
}, -- [2]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7271,
["Trigger"] = {
["y"] = -10546.5,
["x"] = 1197.7,
},
["Range"] = 32.62,
["TT"] = {
["y"] = -10830.2,
["x"] = 1214.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10626.8,
["x"] = 1311.8,
},
["Range"] = 17.32,
["CRange"] = 7271,
["TT"] = {
["y"] = -10626.8,
["x"] = 1311.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10595.7,
["x"] = 1434.5,
},
["Range"] = 14.84,
["CRange"] = 7271,
["TT"] = {
["y"] = -10595.3,
["x"] = 1431.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10640.3,
["x"] = 1528.9,
},
["Range"] = 31.73,
["CRange"] = 7271,
["TT"] = {
["y"] = -10640.3,
["x"] = 1528.9,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10513.7,
["x"] = 1634.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Alexston Farmstead",
["TT"] = {
["y"] = -10513.7,
["x"] = 1634.7,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -10450.3,
["x"] = 1682.5,
},
["Range"] = 24.27,
["CRange"] = 7271,
["TT"] = {
["y"] = -10450.3,
["x"] = 1682.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10421,
["x"] = 1743.5,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Gold Coast Quarry",
["TT"] = {
["y"] = -10421,
["x"] = 1743.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10297.7,
["x"] = 1705,
},
["Range"] = 27.79,
["CRange"] = 7271,
["TT"] = {
["y"] = -10297.7,
["x"] = 1705,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10204.5,
["x"] = 1603,
},
["Range"] = 20.32,
["CRange"] = 7271,
["TT"] = {
["y"] = -10204.5,
["x"] = 1603,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10182.8,
["x"] = 1558,
},
["Range"] = 0.61,
["Explore"] = "Discovered: The Molsen Farm",
["TT"] = {
["y"] = -10182.8,
["x"] = 1558,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10129.5,
["x"] = 1575.5,
},
["Range"] = 22.39,
["CRange"] = 7271,
["TT"] = {
["y"] = -10129.5,
["x"] = 1575.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10032,
["x"] = 1513,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Jangolode Mine",
["TT"] = {
["y"] = -10032,
["x"] = 1513,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10077.7,
["x"] = 1291,
},
["Range"] = 23.48,
["CRange"] = 7271,
["TT"] = {
["y"] = -10077.7,
["x"] = 1291,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10027.3,
["x"] = 1238.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Furlbrow's Pumpkin Farm",
["TT"] = {
["y"] = -10027.3,
["x"] = 1238.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10069.5,
["x"] = 1134.3,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Saldean's Farm",
["TT"] = {
["y"] = -10069.5,
["x"] = 1134.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9961.2,
["x"] = 1001.6,
},
["Range"] = 28.07,
["CRange"] = 7271,
["TT"] = {
["y"] = -9961.2,
["x"] = 1001.6,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9914.7,
["x"] = 987.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Jansen Stead",
["TT"] = {
["y"] = -9914.7,
["x"] = 987.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9784.2,
["x"] = 812,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Forest's Edge",
["TT"] = {
["y"] = -9784.2,
["x"] = 812,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9669.5,
["x"] = 692,
},
["Range"] = 0.75,
["Explore"] = "Discovered: Westbrook Garrison",
["TT"] = {
["y"] = -9669.5,
["x"] = 692,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9740.5,
["x"] = 558.5,
},
["Range"] = 14.48,
["CRange"] = 7271,
["TT"] = {
["y"] = -9740.5,
["x"] = 558.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9778.3,
["x"] = 506.3,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Stonefield Farm",
["TT"] = {
["y"] = -9778.3,
["x"] = 506.3,
},
}, -- [2]
},
["1-5Explorer2"] = {
{
["PickUp"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -6248.3,
["x"] = 135.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -6205,
["x"] = 114.4,
},
["Range"] = 9.89,
["CRange"] = 21211,
["TT"] = {
["y"] = -6205,
["x"] = 114.4,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -6169,
["x"] = 127.8,
},
["Range"] = 8.83,
["CRange"] = 21211,
["TT"] = {
["y"] = -6169,
["x"] = 127.8,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6143.8,
["x"] = 74,
},
["Range"] = 13.07,
["CRange"] = 21211,
["TT"] = {
["y"] = -6143.8,
["x"] = 74,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -6116.2,
["x"] = 74.5,
},
["Range"] = 6.89,
["CRange"] = 21211,
["TT"] = {
["y"] = -6116.2,
["x"] = 74.5,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -6059.9,
["x"] = 44.4,
},
["Range"] = 9.21,
["CRange"] = 21211,
["TT"] = {
["y"] = -6062.7,
["x"] = 43.9,
},
}, -- [7]
{
["Trigger"] = {
["y"] = -6029.9,
["x"] = 49.7,
},
["Range"] = 15.45,
["CRange"] = 21211,
["TT"] = {
["y"] = -6032.4,
["x"] = 48.7,
},
}, -- [8]
{
["Trigger"] = {
["y"] = -5796.5,
["x"] = 84.5,
},
["Range"] = 24.55,
["CRange"] = 21211,
["TT"] = {
["y"] = -5796.5,
["x"] = 84.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5721.5,
["x"] = 97,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Chill Breeze Valley",
["TT"] = {
["y"] = -5721.5,
["x"] = 97,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -5747.2,
["x"] = 160.9,
},
["Range"] = 18.05,
["CRange"] = 21211,
["TT"] = {
["y"] = -5747.2,
["x"] = 160.9,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5661.2,
["x"] = 295.7,
},
["Range"] = 20.06,
["CRange"] = 21211,
["TT"] = {
["y"] = -5661.2,
["x"] = 295.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -5703.4,
["x"] = 381.1,
},
["Range"] = 0.75,
["Explore"] = "Discovered: Frostmane Hold",
["TT"] = {
["y"] = -5703.4,
["x"] = 381.1,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -5655.5,
["x"] = 288.7,
},
["Range"] = 16.18,
["CRange"] = 21211,
["TT"] = {
["y"] = -5655.5,
["x"] = 288.7,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -5594.2,
["x"] = 276.5,
},
["Range"] = 17.71,
["CRange"] = 21211,
["TT"] = {
["y"] = -5594.2,
["x"] = 276.5,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -5556.3,
["x"] = 204.6,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Brewnall Village",
["TT"] = {
["y"] = -5556.3,
["x"] = 204.6,
},
}, -- [6]
{
["ExtraLine"] = "Dodge Mobs",
["Explore"] = "Discovered: Iceflow Lake",
["Trigger"] = {
["y"] = -5381.3,
["x"] = 162.4,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -5381.3,
["x"] = 162.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5269.8,
["x"] = -1.5,
},
["Range"] = 27.84,
["CRange"] = 21211,
["TT"] = {
["y"] = -5269.8,
["x"] = -1.5,
},
}, -- [2]
{
["ExtraLine"] = "Discover and then Die and spirit rez",
["Explore"] = "Discovered: Shimmer Ridge",
["Trigger"] = {
["y"] = -5268.5,
["x"] = -139,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -5268.5,
["x"] = -139,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -5704.2,
["x"] = -457.2,
},
["Range"] = 0.61,
["ExtraLine"] = "Die and spirit rez",
["Explore"] = "Discovered: The Grizzled Den",
["TT"] = {
["y"] = -5704.2,
["x"] = -457.2,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5588.7,
["x"] = -509.5,
},
["CRange"] = 21211,
["Range"] = 4.46,
["TT"] = {
["y"] = -5588.7,
["x"] = -509.5,
},
}, -- [1]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.4,
["x"] = -523,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -5591.7,
["x"] = -496.9,
},
["Range"] = 10.91,
["CRange"] = 179,
["TT"] = {
["y"] = -5591.7,
["x"] = -496.9,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -5380.8,
["x"] = -541,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Steelgrill's Depot",
["TT"] = {
["y"] = -5380.8,
["x"] = -541,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -5249.3,
["x"] = -539,
},
["Range"] = 8.17,
["CRange"] = 179,
["TT"] = {
["y"] = -5249.3,
["x"] = -539,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5187.4,
["x"] = -720.8,
},
["Range"] = 13.2,
["CRange"] = 179,
["TT"] = {
["y"] = -5187.4,
["x"] = -720.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -5076.4,
["x"] = -759,
},
["Range"] = 13.37,
["CRange"] = 179,
["TT"] = {
["y"] = -5076.4,
["x"] = -759,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -5018,
["x"] = -835,
},
["Range"] = 12.64,
["CRange"] = 179,
["TT"] = {
["y"] = -5018,
["x"] = -835,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -4987.2,
["x"] = -893.7,
},
["Range"] = 9.22,
["CRange"] = 179,
["TT"] = {
["y"] = -4987.2,
["x"] = -893.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -5006.9,
["x"] = -928.8,
},
["Range"] = 9.84,
["CRange"] = 179,
["TT"] = {
["y"] = -5006.9,
["x"] = -928.8,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -4995,
["x"] = -968.8,
},
["Range"] = 7.49,
["CRange"] = 179,
["TT"] = {
["y"] = -4995,
["x"] = -968.8,
},
}, -- [4]
{
["ExtraLine"] = "Jump down",
["CRange"] = 179,
["Trigger"] = {
["y"] = -4998.3,
["x"] = -1064.5,
},
["Range"] = 5.46,
["TT"] = {
["y"] = -4998.3,
["x"] = -1064.5,
},
}, -- [5]
{
["ExtraLine"] = "Back up",
["CRange"] = 179,
["Trigger"] = {
["y"] = -4994.8,
["x"] = -1114.9,
},
["Range"] = 9,
["TT"] = {
["y"] = -4994.8,
["x"] = -1114.9,
},
}, -- [6]
{
["Trigger"] = {
["y"] = -4911.5,
["x"] = -1242,
},
["Range"] = 7.19,
["CRange"] = 179,
["TT"] = {
["y"] = -4911.5,
["x"] = -1242,
},
}, -- [7]
{
["ExtraLine"] = "Go to Stormwind",
["CRange"] = 179,
["Trigger"] = {
["y"] = -4837.9,
["x"] = -1284.9,
},
["Range"] = 12.7,
["TT"] = {
["y"] = -4837.9,
["x"] = -1284.9,
},
}, -- [8]
{
["ExtraLine"] = "Go to Stormwind by Tram",
["CRange"] = 179,
["Trigger"] = {
["y"] = -8353.8,
["x"] = 524.6,
},
["Range"] = 41.18,
["TT"] = {
["y"] = -4839.8,
["x"] = -1322.5,
},
}, -- [1]
{
["PickUp"] = {
333, -- [1]
},
["TT"] = {
["y"] = -8781.3,
["x"] = 640.4,
},
}, -- [2]
{
["PickUp"] = {
332, -- [1]
},
["TT"] = {
["y"] = -8846.5,
["x"] = 616,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -8845.5,
["x"] = 662.6,
},
["Range"] = 7.03,
["CRange"] = 3321,
["TT"] = {
["y"] = -8845.5,
["x"] = 662.6,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -8828.7,
["x"] = 681,
},
["Range"] = 5.66,
["CRange"] = 3321,
["TT"] = {
["y"] = -8828.7,
["x"] = 681,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -8839.5,
["x"] = 720.7,
},
["Range"] = 4.75,
["CRange"] = 3321,
["TT"] = {
["y"] = -8839.5,
["x"] = 720.7,
},
}, -- [4]
{
["TT"] = {
["y"] = -8776.8,
["x"] = 714.1,
},
["Done"] = {
333, -- [1]
},
}, -- [5]
{
["PickUp"] = {
334, -- [1]
},
["TT"] = {
["y"] = -8776.8,
["x"] = 714.1,
},
}, -- [6]
{
["Trigger"] = {
["y"] = -8770.5,
["x"] = 734.2,
},
["Range"] = 6,
["CRange"] = 3321,
["TT"] = {
["y"] = -8770.5,
["x"] = 734.2,
},
}, -- [7]
{
["Trigger"] = {
["y"] = -8802.8,
["x"] = 738.9,
},
["Range"] = 6.09,
["CRange"] = 3321,
["TT"] = {
["y"] = -8802.8,
["x"] = 738.9,
},
}, -- [8]
{
["Trigger"] = {
["y"] = -8844.7,
["x"] = 726.2,
},
["Range"] = 6.54,
["CRange"] = 3321,
["TT"] = {
["y"] = -8844.7,
["x"] = 726.2,
},
}, -- [9]
{
["Trigger"] = {
["y"] = -8871.3,
["x"] = 758.2,
},
["Range"] = 5.57,
["CRange"] = 3321,
["TT"] = {
["y"] = -8871.3,
["x"] = 758.2,
},
}, -- [10]
{
["Trigger"] = {
["y"] = -8905.8,
["x"] = 790.6,
},
["Range"] = 5.06,
["CRange"] = 3321,
["TT"] = {
["y"] = -8905.8,
["x"] = 790.6,
},
}, -- [11]
{
["Trigger"] = {
["y"] = -8900.5,
["x"] = 803.1,
},
["Range"] = 3.88,
["CRange"] = 3321,
["TT"] = {
["y"] = -8900.5,
["x"] = 803.1,
},
}, -- [12]
{
["Trigger"] = {
["y"] = -8901,
["x"] = 831.6,
},
["Range"] = 5.13,
["CRange"] = 334,
["TT"] = {
["y"] = -8901,
["x"] = 831.6,
},
}, -- [13]
{
["Trigger"] = {
["y"] = -8924.2,
["x"] = 856.2,
},
["Range"] = 6.63,
["CRange"] = 334,
["TT"] = {
["y"] = -8924.2,
["x"] = 856.2,
},
}, -- [14]
{
["Trigger"] = {
["y"] = -8955.8,
["x"] = 858.6,
},
["Range"] = 7.14,
["CRange"] = 334,
["TT"] = {
["y"] = -8955.8,
["x"] = 858.6,
},
}, -- [15]
{
["Trigger"] = {
["y"] = -8976.3,
["x"] = 825.5,
},
["Range"] = 4,
["CRange"] = 334,
["TT"] = {
["y"] = -8976.3,
["x"] = 825.5,
},
}, -- [16]
{
["TT"] = {
["y"] = -8961.3,
["x"] = 809.6,
},
["Done"] = {
334, -- [1]
},
}, -- [17]
{
["Trigger"] = {
["y"] = -8976.3,
["x"] = 826.9,
},
["Range"] = 5.82,
["CRange"] = 3321,
["TT"] = {
["y"] = -8976.3,
["x"] = 826.9,
},
}, -- [18]
{
["Trigger"] = {
["y"] = -8952.8,
["x"] = 858.2,
},
["Range"] = 4.73,
["CRange"] = 3321,
["TT"] = {
["y"] = -8952.8,
["x"] = 858.2,
},
}, -- [19]
{
["Trigger"] = {
["y"] = -8919.8,
["x"] = 854.6,
},
["Range"] = 4.79,
["CRange"] = 3321,
["TT"] = {
["y"] = -8919.8,
["x"] = 854.6,
},
}, -- [20]
{
["Trigger"] = {
["y"] = -8900.2,
["x"] = 830,
},
["Range"] = 8.01,
["CRange"] = 3321,
["TT"] = {
["y"] = -8900.2,
["x"] = 830,
},
}, -- [21]
{
["Trigger"] = {
["y"] = -8905,
["x"] = 788.7,
},
["Range"] = 5.42,
["CRange"] = 3321,
["TT"] = {
["y"] = -8905,
["x"] = 788.7,
},
}, -- [22]
{
["Trigger"] = {
["y"] = -8868.8,
["x"] = 757.2,
},
["Range"] = 5.85,
["CRange"] = 3321,
["TT"] = {
["y"] = -8868.8,
["x"] = 757.2,
},
}, -- [23]
{
["Trigger"] = {
["y"] = -8852,
["x"] = 720.4,
},
["Range"] = 6.37,
["CRange"] = 3321,
["TT"] = {
["y"] = -8852,
["x"] = 720.4,
},
}, -- [24]
{
["Trigger"] = {
["y"] = -8892.8,
["x"] = 694.7,
},
["Range"] = 4.83,
["CRange"] = 3321,
["TT"] = {
["y"] = -8892.8,
["x"] = 694.7,
},
}, -- [25]
{
["TT"] = {
["y"] = -8884.3,
["x"] = 675.9,
},
["Done"] = {
332, -- [1]
},
}, -- [26]
{
["Trigger"] = {
["y"] = -8891.8,
["x"] = 697.5,
},
["Range"] = 4.08,
["CRange"] = 3321,
["TT"] = {
["y"] = -8891.8,
["x"] = 697.5,
},
}, -- [27]
{
["Trigger"] = {
["y"] = -8846.8,
["x"] = 718.9,
},
["Range"] = 4.96,
["CRange"] = 3321,
["TT"] = {
["y"] = -8846.8,
["x"] = 718.9,
},
}, -- [28]
{
["Trigger"] = {
["y"] = -8827.7,
["x"] = 679.6,
},
["Range"] = 6.03,
["CRange"] = 3321,
["TT"] = {
["y"] = -8827.7,
["x"] = 679.6,
},
}, -- [29]
{
["Trigger"] = {
["y"] = -8847.5,
["x"] = 659.1,
},
["Range"] = 6.21,
["CRange"] = 3321,
["TT"] = {
["y"] = -8847.5,
["x"] = 659.1,
},
}, -- [30]
{
["Trigger"] = {
["y"] = -8810.8,
["x"] = 599.1,
},
["Range"] = 6.5,
["CRange"] = 3321,
["TT"] = {
["y"] = -8810.8,
["x"] = 599.1,
},
}, -- [31]
{
["Trigger"] = {
["y"] = -8835,
["x"] = 490.1,
},
["GetFP"] = 179,
["Range"] = 0.75,
["TT"] = {
["y"] = -8835,
["x"] = 490.1,
},
}, -- [32]
{
["ExtraLine"] = "jump down",
["CRange"] = 179,
["Trigger"] = {
["y"] = -8992.8,
["x"] = 413.3,
},
["Range"] = 7.89,
["TT"] = {
["y"] = -8992.8,
["x"] = 413.3,
},
}, -- [33]
{
["Trigger"] = {
["y"] = -9037,
["x"] = 437.8,
},
["Range"] = 7.75,
["CRange"] = 179,
["TT"] = {
["y"] = -9037,
["x"] = 437.8,
},
}, -- [34]
{
["Trigger"] = {
["y"] = -9089.3,
["x"] = 396.7,
},
["Range"] = 9.55,
["CRange"] = 179,
["TT"] = {
["y"] = -9089.3,
["x"] = 396.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9134,
["x"] = 309.3,
},
["Range"] = 12.22,
["CRange"] = 179,
["TT"] = {
["y"] = -9134,
["x"] = 309.3,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9163.5,
["x"] = 150.5,
},
["Range"] = 9.89,
["CRange"] = 179,
["TT"] = {
["y"] = -9163.5,
["x"] = 150.5,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9123.5,
["x"] = 92.3,
},
["Range"] = 10.36,
["CRange"] = 179,
["TT"] = {
["y"] = -9123.5,
["x"] = 92.3,
},
}, -- [4]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044.2,
["x"] = -45.8,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -9044.8,
["x"] = -86.5,
},
["Range"] = 8.26,
["CRange"] = 179,
["TT"] = {
["y"] = -9044.8,
["x"] = -86.5,
},
}, -- [6]
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8932.8,
["x"] = -136.5,
},
}, -- [7]
{
["TT"] = {
["y"] = -8902.2,
["x"] = -162.4,
},
["Done"] = {
783, -- [1]
},
}, -- [8]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8933.3,
["x"] = -136.5,
},
}, -- [9]
{
["Trigger"] = {
["y"] = -8905,
["x"] = -136,
},
["Range"] = 6.81,
["CRange"] = 52611,
["TT"] = {
["y"] = -8905,
["x"] = -136,
},
}, -- [10]
{
["Trigger"] = {
["y"] = -8871,
["x"] = -149.7,
},
["Range"] = 4.57,
["CRange"] = 52611,
["TT"] = {
["y"] = -8871,
["x"] = -149.7,
},
}, -- [11]
{
["TT"] = {
["y"] = -8868.8,
["x"] = -162.5,
},
["Done"] = {
5261, -- [1]
},
}, -- [12]
{
["Trigger"] = {
["y"] = -9038.5,
["x"] = -95,
},
["Range"] = 7.1,
["CRange"] = 52611,
["TT"] = {
["y"] = -9038.5,
["x"] = -95,
},
}, -- [13]
{
["Trigger"] = {
["y"] = -9056,
["x"] = -49,
},
["Range"] = 11.49,
["CRange"] = 52611,
["TT"] = {
["y"] = -9056,
["x"] = -49,
},
}, -- [14]
{
["Explore"] = "Discovered: Crystal Lake",
["Trigger"] = {
["y"] = -9347.3,
["x"] = -115,
},
["Range"] = 0.75,
["TT"] = {
["y"] = -9347.3,
["x"] = -115,
},
["LeaveQuests"] = {
7, -- [1]
33, -- [2]
18,
},
},
{
["ExtraLine"] = "go into the Inn",
["CRange"] = 2158,
["Trigger"] = {
["y"] = -9458.3,
["x"] = 47,
},
["Range"] = 3.95,
["TT"] = {
["y"] = -9458.3,
["x"] = 47,
},
}, -- [12]
{
["TT"] = {
["y"] = -9462.2,
["x"] = 16.8,
},
["Done"] = {
2158, -- [1]
},
}, -- [13]
{
["ExtraLine"] = "Exit Inn",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -9458.2,
["x"] = 46.9,
},
["Range"] = 2.55,
["TT"] = {
["y"] = -9458.2,
["x"] = 46.9,
},
}, -- [15]
{
["Trigger"] = {
["y"] = -9479.7,
["x"] = 45,
},
["Range"] = 5.46,
["CRange"] = 7212,
["TT"] = {
["y"] = -9479.7,
["x"] = 45,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9607,
["x"] = -223,
},
["Range"] = 13.75,
["CRange"] = 7212,
["TT"] = {
["y"] = -9607,
["x"] = -223,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9602,
["x"] = -475.9,
},
["Range"] = 10.17,
["CRange"] = 7212,
["TT"] = {
["y"] = -9602,
["x"] = -475.9,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9627.5,
["x"] = -622.3,
},
["Range"] = 17.46,
["CRange"] = 7212,
["TT"] = {
["y"] = -9627.5,
["x"] = -622.3,
},
}, -- [4]
{
["Explore"] = "Discovered: Tower of Azora",
["Trigger"] = {
["y"] = -9592.7,
["x"] = -676,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9592.7,
["x"] = -676,
},
},
{
["Trigger"] = {
["y"] = -9652.3,
["x"] = -774.8,
},
["Range"] = 22.77,
["CRange"] = 7212,
["TT"] = {
["y"] = -9652.3,
["x"] = -774.8,
},
}, -- [1]
{
["Explore"] = "Discovered: Brackwell Pumpkin Patch",
["Trigger"] = {
["y"] = -9676.5,
["x"] = -869.3,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9676.5,
["x"] = -869.3,
},
},
{
["Trigger"] = {
["y"] = -9593,
["x"] = -927,
},
["Range"] = 24.97,
["CRange"] = 7212,
["TT"] = {
["y"] = -9593,
["x"] = -927,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9596.5,
["x"] = -1099,
},
["Range"] = 12.09,
["CRange"] = 7212,
["TT"] = {
["y"] = -9596.5,
["x"] = -1099,
},
}, -- [4]
{
["Explore"] = "Discovered: Eastvale Logging Camp",
["Trigger"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
["Range"] = 0.61,
["TT"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
},
{
["Trigger"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
["Range"] = 12.72,
["CRange"] = 7212,
["TT"] = {
["y"] = -9486.5,
["x"] = -1155.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9435.7,
["x"] = -1093.5,
},
["Range"] = 7.4,
["CRange"] = 7212,
["TT"] = {
["y"] = -9435.7,
["x"] = -1093.5,
},
}, -- [2]
{
["Explore"] = "Discovered: Stone Cairn Lake",
["Trigger"] = {
["y"] = -9385.3,
["x"] = -1062.4,
},
["Range"] = 0.69,
["TT"] = {
["y"] = -9385.3,
["x"] = -1062.4,
},
},
{
["Trigger"] = {
["y"] = -9605,
["x"] = -1225.3,
},
["Range"] = 52.02,
["CRange"] = 7212,
["TT"] = {
["y"] = -9605,
["x"] = -1225.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9718.3,
["x"] = -1385.4,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Ridgepoint Tower",
["TT"] = {
["y"] = -9718.3,
["x"] = -1385.4,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9650.2,
["x"] = -1434.5,
},
["Range"] = 21.09,
["CRange"] = 7212,
["TT"] = {
["y"] = -9650.2,
["x"] = -1434.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9613.5,
["x"] = -1713,
},
["Range"] = 28.91,
["CRange"] = 7212,
["TT"] = {
["y"] = -9613.5,
["x"] = -1713,
},
}, -- [1]
{
["ExtraLine"] = "Die and spirit Rez",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -9393.2,
["x"] = -2021.4,
},
["Range"] = 44.96,
["TT"] = {
["y"] = -9584.8,
["x"] = -2001.9,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9410.2,
["x"] = -2264.2,
},
["Range"] = 7.61,
["CRange"] = 7212,
["TT"] = {
["y"] = -9410.2,
["x"] = -2264.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9279.8,
["x"] = -2274.2,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Lakeshire",
["TT"] = {
["y"] = -9279.8,
["x"] = -2274.2,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9411.3,
["x"] = -2261.4,
},
["Range"] = 8.97,
["CRange"] = 7212,
["TT"] = {
["y"] = -9411.3,
["x"] = -2261.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9434.7,
["x"] = -2234.2,
},
["GetFP"] = 7212,
["Range"] = 0.69,
["TT"] = {
["y"] = -9434.7,
["x"] = -2234.2,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9552.5,
["x"] = -2200.4,
},
["Range"] = 26.22,
["CRange"] = 7212,
["TT"] = {
["y"] = -9552.5,
["x"] = -2200.4,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9630.3,
["x"] = -2148.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Lakeridge Highway",
["TT"] = {
["y"] = -9630.3,
["x"] = -2148.7,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9684.7,
["x"] = -2049,
},
["Range"] = 20.34,
["CRange"] = 7212,
["TT"] = {
["y"] = -9684.7,
["x"] = -2049,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9723,
["x"] = -1933.5,
},
["Range"] = 12.76,
["CRange"] = 7212,
["TT"] = {
["y"] = -9723,
["x"] = -1933.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9717.3,
["x"] = -1883.3,
},
["Range"] = 16.6,
["CRange"] = 7212,
["TT"] = {
["y"] = -9717.3,
["x"] = -1883.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9868.2,
["x"] = -1726,
},
["Range"] = 15.29,
["CRange"] = 7212,
["TT"] = {
["y"] = -9868.2,
["x"] = -1726,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -9918.5,
["x"] = -1689.1,
},
["Range"] = 8.99,
["CRange"] = 7212,
["TT"] = {
["y"] = -9918.5,
["x"] = -1689.1,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9912.5,
["x"] = -1647,
},
["Range"] = 0.61,
["Explore"] = "Discovered: The Darkened Bank",
["TT"] = {
["y"] = -9912.5,
["x"] = -1647,
},
}, -- [2]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -10773.8,
["x"] = -1189.3,
},
["Range"] = 29.43,
["TT"] = {
["y"] = -10026.8,
["x"] = -1540.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10891,
["x"] = -1242.1,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Tranquil Gardens Cemetery",
["TT"] = {
["y"] = -10891,
["x"] = -1242.1,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10608.3,
["x"] = -1182.3,
},
["Range"] = 24.78,
["CRange"] = 7212,
["TT"] = {
["y"] = -10608.3,
["x"] = -1182.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10513.3,
["x"] = -1258.5,
},
["GetFP"] = 7212,
["Range"] = 0.69,
["TT"] = {
["y"] = -10513.3,
["x"] = -1258.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10439.7,
["x"] = -1235.6,
},
["Range"] = 11.67,
["CRange"] = 7212,
["TT"] = {
["y"] = -10439.7,
["x"] = -1235.6,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10423.2,
["x"] = -1241.9,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Manor Mistmantle",
["TT"] = {
["y"] = -10423.2,
["x"] = -1241.9,
},
}, -- [4]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -10773.8,
["x"] = -1189.3,
},
["Range"] = 27,
["TT"] = {
["y"] = -10381,
["x"] = -1235.1,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -10786,
["x"] = -1078.5,
},
["Range"] = 14.59,
["CRange"] = 7212,
["TT"] = {
["y"] = -10786,
["x"] = -1078.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10880.2,
["x"] = -1019.8,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Rotting Orchard",
["TT"] = {
["y"] = -10880.2,
["x"] = -1019.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10811.7,
["x"] = -986,
},
["Range"] = 9.29,
["CRange"] = 7212,
["TT"] = {
["y"] = -10811.7,
["x"] = -986,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10810.8,
["x"] = -870.8,
},
["Range"] = 19.71,
["CRange"] = 7212,
["TT"] = {
["y"] = -10810.2,
["x"] = -872.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10870.7,
["x"] = -771.5,
},
["Range"] = 22.05,
["CRange"] = 7212,
["TT"] = {
["y"] = -10869,
["x"] = -773.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10938,
["x"] = -720,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Yorgen Farmstead",
["TT"] = {
["y"] = -10938,
["x"] = -720,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10970,
["x"] = -623.3,
},
["Range"] = 21.79,
["CRange"] = 7212,
["TT"] = {
["y"] = -10970,
["x"] = -623.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10915.8,
["x"] = -389.5,
},
["Range"] = 42.65,
["CRange"] = 7212,
["TT"] = {
["y"] = -10915.8,
["x"] = -389.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10948.5,
["x"] = -288.2,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Vul'Gol Ogre Mound",
["TT"] = {
["y"] = -10948.5,
["x"] = -288.2,
},
}, -- [3]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -10606.3,
["x"] = 294.5,
},
["Range"] = 19.95,
["TT"] = {
["y"] = -10962.3,
["x"] = -266.4,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10586.7,
["x"] = 295.3,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Raven Hill Cemetery",
["TT"] = {
["y"] = -10586.7,
["x"] = 295.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10725.7,
["x"] = 296,
},
["Range"] = 13.71,
["CRange"] = 7212,
["TT"] = {
["y"] = -10725.7,
["x"] = 296,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10810.3,
["x"] = 383.1,
},
["Range"] = 18.38,
["CRange"] = 7212,
["TT"] = {
["y"] = -10810.3,
["x"] = 383.1,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10870.5,
["x"] = 417.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Addle's Stead",
["TT"] = {
["y"] = -10870.5,
["x"] = 417.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10818.7,
["x"] = 432.6,
},
["Range"] = 23.52,
["CRange"] = 7212,
["TT"] = {
["y"] = -10818.7,
["x"] = 432.6,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10864.2,
["x"] = 595.4,
},
["Range"] = 10.3,
["CRange"] = 7212,
["TT"] = {
["y"] = -10864.2,
["x"] = 595.4,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10861.5,
["x"] = 640.2,
},
["Range"] = 9.16,
["CRange"] = 7212,
["TT"] = {
["y"] = -10862.7,
["x"] = 642.6,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10860.5,
["x"] = 660.9,
},
["Range"] = 9.31,
["CRange"] = 7212,
["TT"] = {
["y"] = -10860.5,
["x"] = 660.9,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10823.2,
["x"] = 646.6,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Dead Acre",
["TT"] = {
["y"] = -10823.2,
["x"] = 646.6,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10801.5,
["x"] = 626.2,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Hushed Bank",
["TT"] = {
["y"] = -10801.5,
["x"] = 626.2,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10865.2,
["x"] = 679.7,
},
["Range"] = 18.04,
["CRange"] = 7212,
["TT"] = {
["y"] = -10865.2,
["x"] = 679.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10931,
["x"] = 724,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Dust Plains",
["TT"] = {
["y"] = -10931,
["x"] = 724,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10927,
["x"] = 828.4,
},
["Range"] = 18.36,
["CRange"] = 7212,
["TT"] = {
["y"] = -10927,
["x"] = 828.4,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10950.5,
["x"] = 940.7,
},
["Range"] = 20.81,
["CRange"] = 7212,
["TT"] = {
["y"] = -10950.5,
["x"] = 940.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10958.2,
["x"] = 1121.9,
},
["Range"] = 22.73,
["CRange"] = 7212,
["TT"] = {
["y"] = -10958.2,
["x"] = 1121.9,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -11018.3,
["x"] = 1176,
},
["Range"] = 0.75,
["Explore"] = "Discovered: The Dagger Hills",
["TT"] = {
["y"] = -11018.3,
["x"] = 1176,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Moonbrook",
["TT"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
["Range"] = 0.69,
["CRange"] = 7212,
["TT"] = {
["y"] = -10978.3,
["x"] = 1194.7,
},
}, -- [1]
{
["ExtraLine"] = "Explore Die and spirit rez",
["Trigger"] = {
["y"] = -10898.7,
["x"] = 1239.3,
},
["Range"] = 18.83,
["Explore"] = "Discovered: Stendel's Pond",
["TT"] = {
["y"] = -10898.5,
["x"] = 1239.5,
},
}, -- [2]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 7212,
["Trigger"] = {
["y"] = -10546.5,
["x"] = 1197.7,
},
["Range"] = 32.62,
["TT"] = {
["y"] = -10830.2,
["x"] = 1214.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10627.8,
["x"] = 1037.7,
},
["GetFP"] = 179,
["Range"] = 0.75,
["TT"] = {
["y"] = -10627.8,
["x"] = 1037.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10626.8,
["x"] = 1311.8,
},
["Range"] = 17.32,
["CRange"] = 7212,
["TT"] = {
["y"] = -10626.8,
["x"] = 1311.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10595.7,
["x"] = 1434.5,
},
["Range"] = 14.84,
["CRange"] = 7212,
["TT"] = {
["y"] = -10595.3,
["x"] = 1431.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10640.3,
["x"] = 1528.9,
},
["Range"] = 31.73,
["CRange"] = 7212,
["TT"] = {
["y"] = -10640.3,
["x"] = 1528.9,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -10513.7,
["x"] = 1634.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Alexston Farmstead",
["TT"] = {
["y"] = -10513.7,
["x"] = 1634.7,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -10450.3,
["x"] = 1682.5,
},
["Range"] = 24.27,
["CRange"] = 7212,
["TT"] = {
["y"] = -10450.3,
["x"] = 1682.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10421,
["x"] = 1743.5,
},
["Range"] = 0.61,
["Explore"] = "Discovered: Gold Coast Quarry",
["TT"] = {
["y"] = -10421,
["x"] = 1743.5,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10297.7,
["x"] = 1705,
},
["Range"] = 27.79,
["CRange"] = 7212,
["TT"] = {
["y"] = -10297.7,
["x"] = 1705,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10204.5,
["x"] = 1603,
},
["Range"] = 20.32,
["CRange"] = 7212,
["TT"] = {
["y"] = -10204.5,
["x"] = 1603,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10182.8,
["x"] = 1558,
},
["Range"] = 0.61,
["Explore"] = "Discovered: The Molsen Farm",
["TT"] = {
["y"] = -10182.8,
["x"] = 1558,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -10129.5,
["x"] = 1575.5,
},
["Range"] = 22.39,
["CRange"] = 7212,
["TT"] = {
["y"] = -10129.5,
["x"] = 1575.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10032,
["x"] = 1513,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Jangolode Mine",
["TT"] = {
["y"] = -10032,
["x"] = 1513,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10077.7,
["x"] = 1291,
},
["Range"] = 23.48,
["CRange"] = 7212,
["TT"] = {
["y"] = -10077.7,
["x"] = 1291,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -10027.3,
["x"] = 1238.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Furlbrow's Pumpkin Farm",
["TT"] = {
["y"] = -10027.3,
["x"] = 1238.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -10069.5,
["x"] = 1134.3,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Saldean's Farm",
["TT"] = {
["y"] = -10069.5,
["x"] = 1134.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9961.2,
["x"] = 1001.6,
},
["Range"] = 28.07,
["CRange"] = 7212,
["TT"] = {
["y"] = -9961.2,
["x"] = 1001.6,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9914.7,
["x"] = 987.7,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Jansen Stead",
["TT"] = {
["y"] = -9914.7,
["x"] = 987.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9784.2,
["x"] = 812,
},
["Range"] = 0.69,
["Explore"] = "Discovered: Forest's Edge",
["TT"] = {
["y"] = -9784.2,
["x"] = 812,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9669.5,
["x"] = 692,
},
["Range"] = 0.75,
["Explore"] = "Discovered: Westbrook Garrison",
["TT"] = {
["y"] = -9669.5,
["x"] = 692,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -9740.5,
["x"] = 558.5,
},
["Range"] = 14.48,
["CRange"] = 7212,
["TT"] = {
["y"] = -9740.5,
["x"] = 558.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -9778.3,
["x"] = 506.3,
},
["Range"] = 0.69,
["Explore"] = "Discovered: The Stonefield Farm",
["TT"] = {
["y"] = -9778.3,
["x"] = 506.3,
},
}, -- [2]
{
["UseHS"] = 179,
["TT"] = {
["y"] = -9766.8,
["x"] = 517.4,
},
}, -- [1]
{
["PickUp"] = {
3364, -- [1]
},
["TT"] = {
["y"] = -6369.9,
["x"] = 572,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -6167.4,
["x"] = 387.2,
},
["Range"] = 8.63,
["CRange"] = 3364,
["TT"] = {
["y"] = -6167.4,
["x"] = 387.2,
},
}, -- [2]
{
["TT"] = {
["y"] = -6055.8,
["x"] = 385.8,
},
["Done"] = {
3364, -- [1]
},
}, -- [3]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6099.2,
["x"] = 396.8,
},
}, -- [1]
{
["PickUp"] = {
3365, -- [1]
},
["TT"] = {
["y"] = -6056.3,
["x"] = 385.7,
},
}, -- [4]
{
["TT"] = {
["y"] = -6370.8,
["x"] = 572.2,
},
["Done"] = {
3365, -- [1]
},
}, -- [5]
{
["Trigger"] = {
["y"] = -6374.2,
["x"] = 774.2,
},
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Range"] = 0.69,
["TT"] = {
["y"] = -6374.2,
["x"] = 774.2,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -6502.8,
["x"] = 680.7,
},
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Range"] = 0.61,
["TT"] = {
["y"] = -6502.8,
["x"] = 680.7,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6479.5,
["x"] = 506,
},
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Range"] = 0.75,
["TT"] = {
["y"] = -6479.5,
["x"] = 506,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -6167.4,
["x"] = 386,
},
["Range"] = 11.66,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.4,
["x"] = 386,
},
}, -- [5]
{
["TT"] = {
["y"] = -6097,
["x"] = 398.3,
},
["Done"] = {
3361, -- [1]
},
}, -- [6]
{
["ExploreDone"] = 1,
}, -- [5]
},
---------------------------------- NightElf Starts ---------------------
["1-12NightElf-Druid"] = {
{
["PickUp"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10328.6,
["x"] = 826.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["PickUp"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10389.5,
["x"] = 764,
},
["Fillers"] = {
[456] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
}, -- [2]
{
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [3]
{
["PickUp"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [4]
{
["Qpart"] = {
[459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 42.7,
["TT"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
}, -- [5]
{
["Qpart"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
["Range"] = 74.81,
["TT"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
}, -- [6]
{
["Done"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297.2,
["x"] = 870.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [7]
{
["Done"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [8]
{
["PickUp"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [9]
{
["ExtraLine"] = "Class Quest",
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["PickUp"] = {
3120, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [10]
{
["PickUp"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417.4,
["x"] = 870.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [11]
{
["PickUp"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10408.4,
["x"] = 714.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [12]
{
["CRange"] = 3120,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10449.8,
["x"] = 861,
},
["Range"] = 11.87,
["TT"] = {
["y"] = 10449.8,
["x"] = 861,
},
},
{
["CRange"] = 3120,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10517.7,
["x"] = 821.4,
},
["Range"] = 9.13,
["TT"] = {
["y"] = 10517.7,
["x"] = 821.4,
},
},
{
["Zone"] = "141 (Teldrassil)",
["Done"] = {
3120,
},
["TT"] = {
["y"] = 10463.6,
["x"] = 829.6,
},
},
{
["ExtraLine"] = "Train abilitys and sell",
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
}, -- [16]
{
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
[916] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
["Range"] = 12.51,
["TT"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
}, -- [17]
{
["Done"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [18]
{
["PickUp"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [19]
{
["Qpart"] = {
[916] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
["Range"] = 41.46,
["TT"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
}, -- [20]
{
["Qpart"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
["Range"] = 81.95,
["TT"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
}, -- [21]
{
["Done"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [22]
{
["PickUp"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [23]
{
["Done"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10328.1,
["x"] = 826.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [24]
{
["Done"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["PickUp"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [26]
{
["ExtraLine"] = "sell and see trainer if you need",
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
["Range"] = 54.57,
["TT"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
}, -- [27]
{
["Qpart"] = {
[3521] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
["Range"] = 61.25,
["TT"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
}, -- [28]
{
["Qpart"] = {
[3521] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
["Range"] = 89.15,
["TT"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
}, -- [29]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Range"] = 6.78,
["TT"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
}, -- [30]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
["Range"] = 13.89,
["TT"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
}, -- [31]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
["Range"] = 11.35,
["TT"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
}, -- [32]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
["Range"] = 8.1,
["TT"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
}, -- [33]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10986,
["x"] = 950.6,
},
["Range"] = 15.1,
["TT"] = {
["y"] = 10986,
["x"] = 950.6,
},
}, -- [34]
{
["Qpart"] = {
[917] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
["Range"] = 0.13,
["TT"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
}, -- [35]
{
["Qpart"] = {
[3521] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["Range"] = 57.49,
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
}, -- [36]
{
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["UseHS"] = 917,
["Zone"] = "141 (Teldrassil)",
}, -- [37]
{
["Done"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [38]
{
["PickUp"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [39]
{
["Done"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [40]
{
["PickUp"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [41]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 920,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
["Range"] = 13.2,
["TT"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
}, -- [42]
{
["ExtraLine"] = "up to top hut",
["Done"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10492.3,
["x"] = 807.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [43]
{
["PickUp"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.8,
["x"] = 806.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [44]
{
["CRange"] = 3522,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
["Range"] = 19.16,
["TT"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
}, -- [45]
{
["Done"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10711,
["x"] = 1034.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [46]
{
["ExtraLine"] = "Fill Phial in the moonwell",
["Qpart"] = {
[921] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
["Button"] = 5185,
["Range"] = 0.1,
["TT"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
}, -- [47]
{
["ExtraLine"] = "Die and spirit rez or run",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
["Range"] = 11.45,
["TT"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
}, -- [48]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
["Range"] = 16.31,
["TT"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
}, -- [49]
{
["ExtraLine"] = "Handin in top hut",
["Done"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
928, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["PickUp"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 10214.1,
["x"] = 700.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9926.1,
["x"] = 736.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
["level"] = 6,
["xp"] = 1,
["TT"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
}, -- [54]
{
["PickUp"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9871.5,
["x"] = 960.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["PickUp"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9887,
["x"] = 966.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [56]
{
["ExtraLine"] = "Train First Aid",
["CRange"] = 475,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9903,
["x"] = 999.5,
},
["Range"] = 3.75,
["TT"] = {
["y"] = 9903,
["x"] = 999.5,
},
}, -- [57]
{
["ExtraLine"] = "Go up top of the tower",
["TT"] = {
["y"] = 9898.8,
["x"] = 986.2,
},
["PickUp"] = {
2438, -- [1]
932, -- [2]
},
["Zone"] = "141 (Teldrassil)",
}, -- [58]
{
["ExtraLine"] = "Repair and sell",
["Done"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["SetHS"] = 2438,
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["ExtraLine"] = "Train lvl6 abilitys",
["Done"] = {
928, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["Done"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [63]
{
["PickUp"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [64]
{
["Qpart"] = {
[919] = {
["1"] = "1",
},
[918] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Range"] = 148.41,
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
}, -- [65]
{
["Done"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [66]
{
["PickUp"] = {
922, -- [1]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 26.24,
["TT"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
}, -- [68]
{
["ExtraLine"] = "Fill Phial at moonwell",
["Qpart"] = {
[929] = {
["1"] = "1",
},
},
["Button"] = 5619,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 0.11,
["TT"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
}, -- [69]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [70]
{
["PickUp"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [71]
{
["ExtraLine"] = "Loot Dresser in the building",
["Qpart"] = {
[2438] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9807.8,
["x"] = 352,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9807.8,
["x"] = 352,
},
}, -- [72]
{
["Qpart"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
["Range"] = 237.21,
["TT"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
}, -- [73]
{
["Done"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9925.9,
["x"] = 736,
},
["Zone"] = "141 (Teldrassil)",
}, -- [74]
{
["PickUp"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9872.8,
["x"] = 957.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [75]
{
["Done"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [76]
{
["PickUp"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [77]
{
["ExtraLine"] = "Sell",
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
["Range"] = 28.99,
["TT"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
}, -- [78]
{
["Done"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [79]
{
["PickUp"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [80]
{
["ExtraLine"] = "Train cooking and accept quest",
["TT"] = {
["y"] = 9751.3,
["x"] = 906,
},
["PickUp"] = {
4161, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [81]
{
["ExtraLine"] = "Loot Fel Cones around the trees",
["Qpart"] = {
[489] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9779,
["x"] = 784.3,
},
["Fillers"] = {
[4161] = {
["1"] = "1",
},
},
["Range"] = 32.91,
["TT"] = {
["y"] = 9779,
["x"] = 784.3,
},
}, -- [82]
{
["Done"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9925.6,
["x"] = 737,
},
["Zone"] = "141 (Teldrassil)",
}, -- [83]
{
["ExtraLine"] = "Top of the tower",
["Done"] = {
2438, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [84]
{
["PickUp"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [85]
{
["ExtraLine"] = "Click Necklace after you loot it",
["Qpart"] = {
[2459] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
["Fillers"] = {
[2459] = {
["1"] = "1",
},
},
["Range"] = 0.17,
["TT"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
}, -- [86]
{
["Qpart"] = {
[2459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10020.7,
["x"] = 283,
},
["Range"] = 40.14,
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
}, -- [87]
{
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
["UseHS"] = 2459,
["Zone"] = "141 (Teldrassil)",
}, -- [88]
{
["ExtraLine"] = "Top of the tree",
["Done"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.2,
["x"] = 985.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [89]
{
["CRange"] = 933,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
["Range"] = 17.17,
["TT"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
}, -- [90]
{
["PickUp"] = {
487, -- [1]
},
["TT"] = {
["y"] = 10107,
["x"] = 1369.1,
},
["ExtraLine"] = "Follow the road untill you get the quest",
["Zone"] = "141 (Teldrassil)",
}, -- [91]
{
["Qpart"] = {
[487] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10029.5,
["x"] = 1415,
},
["Range"] = 58.65,
["TT"] = {
["y"] = 10029.5,
["x"] = 1415,
},
}, -- [92]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
["Range"] = 12.45,
["TT"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
}, -- [93]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
["Range"] = 9.11,
["TT"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
}, -- [94]
{
["ExtraLine"] = "Over the bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
["Range"] = 8.87,
["TT"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
}, -- [95]
{
["Qpart"] = {
[483] = {
["4"] = "4",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9772.7,
["x"] = 1554,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9772.7,
["x"] = 1554,
},
}, -- [96]
{
["ExtraLine"] = "back over bridge and take other",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
["Range"] = 9.69,
["TT"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
}, -- [97]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1580.5,
},
["Range"] = 10.77,
["TT"] = {
["y"] = 9754,
["x"] = 1580.5,
},
}, -- [98]
{
["Qpart"] = {
[483] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
}, -- [99]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
["Range"] = 7.78,
["TT"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
}, -- [100]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1632.8,
},
["Range"] = 9.92,
["TT"] = {
["y"] = 9754,
["x"] = 1632.8,
},
}, -- [101]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
["Range"] = 6.16,
["TT"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
}, -- [102]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
["Range"] = 6.8,
["TT"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
}, -- [103]
{
["PickUp"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1526.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [104]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
["Range"] = 7.12,
["TT"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
}, -- [105]
{
["Qpart"] = {
[483] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
}, -- [106]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
["Range"] = 8.64,
["TT"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
}, -- [107]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
["Range"] = 6.81,
["TT"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
}, -- [108]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9791.8,
["x"] = 1514,
},
["Range"] = 7.44,
["TT"] = {
["y"] = 9791.8,
["x"] = 1514,
},
}, -- [109]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 5.05,
["TT"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
}, -- [110]
{
["ExtraLine"] = "Go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 4.21,
["TT"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
}, -- [111]
{
["ExtraLine"] = "go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 7.06,
["TT"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
}, -- [112]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 10.5,
["TT"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
}, -- [113]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9860,
["x"] = 1459.5,
},
["Range"] = 6.04,
["TT"] = {
["y"] = 9860,
["x"] = 1459.5,
},
}, -- [114]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
["Range"] = 8.54,
["TT"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
}, -- [115]
{
["Qpart"] = {
[483] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9882,
["x"] = 1489.7,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9882,
["x"] = 1489.7,
},
}, -- [116]
{
["ExtraLine"] = "Kill shamans for the charm",
["Qpart"] = {
[2541] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
["Range"] = 35.09,
["TT"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
}, -- [117]
{
["ExtraLine"] = "go back to Oben",
["Done"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [118]
{
["PickUp"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [119]
{
["ExtraLine"] = "He patrols around the circle",
["Qpart"] = {
[2561] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
}, -- [120]
{
["ExtraLine"] = "Use Voodoo Charm on his corpse",
["Qpart"] = {
[2561] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
["Button"] = 8149,
["Range"] = 0.17,
["TT"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
}, -- [121]
{
["Done"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1525.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [122]
{
["ExtraLine"] = "Leave the Den",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
["Range"] = 14.27,
["TT"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
}, -- [123]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
["Range"] = 21.08,
["TT"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
}, -- [124]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
["Range"] = 17.2,
["TT"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
}, -- [125]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[933] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
["Button"] = 5621,
["Range"] = 0.15,
["TT"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
}, -- [126]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
["Range"] = 20.4,
["TT"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
}, -- [127]
{
["ExtraLine"] = "Click Plant",
["TT"] = {
["y"] = 9248.7,
["x"] = 1643.4,
},
["PickUp"] = {
930, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [128]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9483,
["x"] = 1305.6,
},
["Range"] = 23.15,
["TT"] = {
["y"] = 9483,
["x"] = 1305.6,
},
}, -- [129]
{
["TT"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["xp"] = 5500,
["Trigger"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["level"] = 9,
["Range"] = 64,
["Grind"] = 11951,
}, -- [130]
{
["ExtraLine"] = "Find Amara along the road again",
["Done"] = {
487, -- [1]
},
["TT"] = {
["y"] = 9914,
["x"] = 1196.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [131]
{
["Done"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [132]
{
["PickUp"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [133]
{
["ExtraLine"] = "Sell on the way",
["Done"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [134]
{
["PickUp"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [135]
{
["TT"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [136]
{
["PickUp"] = {
5923, -- [1]
},
["TT"] = {
["y"] = 9741.5,
["x"] = 966.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["ExtraLine"] = "Go to Darnassus",
["CRange"] = 5923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9983.8,
["x"] = 1972.2,
},
["Range"] = 30.33,
["TT"] = {
["y"] = 9983.8,
["x"] = 1972.2,
},
}, -- [2]
{
["CRange"] = 5923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.4,
["x"] = 2034.5,
},
["Range"] = 17.04,
["TT"] = {
["y"] = 9985.4,
["x"] = 2034.5,
},
}, -- [3]
{
["PickUp"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 9917.6,
["x"] = 2190.6,
},
["Zone"] = "1657 (Darnassus)",
}, -- [4]
{
["ExtraLine"] = "Weapons Master",
["CRange"] = 5923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9940.3,
["x"] = 2284.2,
},
["Range"] = 2.65,
["TT"] = {
["y"] = 9940.3,
["x"] = 2284.2,
},
}, -- [5]
{
["Done"] = {
922, -- [1]
},
["TT"] = {
["y"] = 10085.4,
["x"] = 2534,
},
["Zone"] = "1657 (Darnassus)",
}, -- [6]
{
["PickUp"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.4,
["x"] = 2534,
},
["Zone"] = "1657 (Darnassus)",
}, -- [7]
{
["Done"] = {
5923, -- [1]
},
["TT"] = {
["y"] = 10178.8,
["x"] = 2564.3,
},
["Zone"] = "1657 (Darnassus)",
}, -- [8]
{
["PickUp"] = {
5921, -- [1]
},
["TT"] = {
["y"] = 10178.8,
["x"] = 2564.3,
},
["Zone"] = "1657 (Darnassus)",
}, -- [9]
{
["ExtraLine"] = "Use Teleport: Moonglade spell",
["CRange"] = 5921,
["Zone"] = "493 (Moonglade)",
["Trigger"] = {
["y"] = 7991.8,
["x"] = -2679.9,
},
["Range"] = 61.42,
["TT"] = {
["y"] = 10178.8,
["x"] = 2564.3,
},
}, -- [10]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
5921, -- [1]
},
["TT"] = {
["y"] = 8020.1,
["x"] = -2678.7,
},
["Zone"] = "493 (Moonglade)",
}, -- [11]
{
["PickUp"] = {
5929, -- [1]
},
["TT"] = {
["y"] = 8020.1,
["x"] = -2678.7,
},
["Zone"] = "493 (Moonglade)",
}, -- [12]
{
["Qpart"] = {
[5929] = {
["1"] = "1",
},
},
["Zone"] = "493 (Moonglade)",
["Trigger"] = {
["y"] = 8068.9,
["x"] = -2286.3,
},
["Range"] = 0.12,
["TT"] = {
["y"] = 8068.9,
["x"] = -2286.3,
},
}, -- [13]
{
["ExtraLine"] = "Use Teleport again",
["Done"] = {
5929, -- [1]
},
["TT"] = {
["y"] = 8020,
["x"] = -2678.8,
},
["Zone"] = "493 (Moonglade)",
}, -- [14]
{
["PickUp"] = {
5931, -- [1]
},
["TT"] = {
["y"] = 8020,
["x"] = -2678.8,
},
["Zone"] = "493 (Moonglade)",
}, -- [15]
{
["ExtraLine"] = "Fly to Darnassus",
["CRange"] = 5931,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7751.5,
["x"] = -1951.4,
},
["Range"] = 158.83,
["TT"] = {
["y"] = 7795.1,
["x"] = -2401.2,
},
}, -- [16]
{
["CRange"] = 5931,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9944.3,
["x"] = 2608.7,
},
["Range"] = 38.29,
["TT"] = {
["y"] = 8787.1,
["x"] = 963.3,
},
}, -- [17]
{
["Done"] = {
5931, -- [1]
},
["TT"] = {
["y"] = 10178.8,
["x"] = 2563.8,
},
["Zone"] = "1657 (Darnassus)",
}, -- [18]
{
["PickUp"] = {
6001, -- [1]
},
["TT"] = {
["y"] = 10178.8,
["x"] = 2563.8,
},
["Zone"] = "1657 (Darnassus)",
}, -- [19]
{
["CRange"] = 6001,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 8786.3,
["x"] = 967.4,
},
["Range"] = 20.97,
["TT"] = {
["y"] = 9958.8,
["x"] = 2622,
},
}, -- [20]
{
["Done"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 8695.3,
["x"] = 949.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [21]
{
["PickUp"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8695.3,
["x"] = 949.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [22]
{
["Done"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8640.8,
["x"] = 841.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [23]
{
["PickUp"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 8640.8,
["x"] = 841.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [24]
{
["Name"] = "Auberdine, Darkshore",
["UseFlightPath"] = 6342,
["TT"] = {
["y"] = 8640.8,
["x"] = 841.1,
},
}, -- [25]
{
["Done"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 6399.5,
["x"] = 533.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [26]
{
["PickUp"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 6399.5,
["x"] = 533.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [27]
{
["CRange"] = 6001,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6347,
["x"] = 125.4,
},
["Range"] = 11.91,
["TT"] = {
["y"] = 6347,
["x"] = 125.4,
},
}, -- [28]
{
["Qpart"] = {
[6001] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6325.6,
["x"] = 94.5,
},
["Button"] = 15208,
["Range"] = 0.14,
["TT"] = {
["y"] = 6325.6,
["x"] = 94.5,
},
}, -- [29]
{
["UseFlightPath"] = 6001,
["Name"] = "Rut'theran Village, Teldrassil",
["TT"] = {
["y"] = 6343.8,
["x"] = 562.2,
},
}, -- [30]
{
["Done"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 8694,
["x"] = 950.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [31]
{
["CRange"] = 6001,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9945.1,
["x"] = 2616.8,
},
["Range"] = 48.3,
["TT"] = {
["y"] = 8787.6,
["x"] = 966.9,
},
}, -- [32]
{
["PickUp"] = {
2519,
},
["Zone"] = "1657 (Darnassus)",
["TT"] = {
["y"] = 9915,
["x"] = 2630.6,
},
},
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9907.3,
["x"] = 2535.1,
},
["Range"] = 11.16,
["TT"] = {
["y"] = 9907.3,
["x"] = 2535.1,
},
},
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9696.6,
["x"] = 2525.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 9696.6,
["x"] = 2525.5,
},
},
{
["ExtraLine"] = "Go upstairs",
["Zone"] = "1657 (Darnassus)",
["Done"] = {
2519,
},
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.4,
},
},
{
["PickUp"] = {
2518,
},
["Zone"] = "1657 (Darnassus)",
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.4,
},
},
{
["Done"] = {
6001, -- [1]
},
["TT"] = {
["y"] = 10179,
["x"] = 2563.9,
},
["Zone"] = "1657 (Darnassus)",
}, -- [33]
{
["ExtraLine"] = "go back to Teldrassil",
["CRange"] = 923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9982.8,
["x"] = 2035.3,
},
["Range"] = 32.72,
["TT"] = {
["y"] = 9982.8,
["x"] = 2035.3,
},
}, -- [34]
{
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.9,
["x"] = 1974.3,
},
["Range"] = 23.74,
["TT"] = {
["y"] = 9985.9,
["x"] = 1974.3,
},
}, -- [35]
{
["ExtraLine"] = "back to Teldrassil",
["CRange"] = 486,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
["Range"] = 18.34,
["TT"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
}, -- [23]
{
["CRange"] = 486,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985,
["x"] = 1965.2,
},
["Range"] = 12.4,
["TT"] = {
["y"] = 9985,
["x"] = 1965.2,
},
}, -- [24]
{
["PickUp"] = {
930, -- [1]
},
["TT"] = {
["y"] = 9250.5,
["x"] = 1643.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["Qpart"] = {
[486] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
["Range"] = 0.12,
["TT"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
}, -- [26]
{
["PickUp"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10664.7,
["x"] = 1863.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [27]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[7383] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
["Button"] = 5623,
["Range"] = 0.12,
["TT"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
}, -- [28]
{
["Qpart"] = {
[923] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.3,
["x"] = 1684.9,
},
["Range"] = 61.34,
["TT"] = {
["y"] = 10677.6,
["x"] = 1683.5,
},
}, -- [29]
{
["ExtraLine"] = "Blackmoss the Fetid drops a quest",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
["Range"] = 8.56,
["TT"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
}, -- [30]
{
["Qpart"] = {
[2518] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
["Range"] = 42.89,
["TT"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
}, -- [31]
{
["PickUp"] = {
931, -- [1]
},
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [32]
{
["Qpart"] = {
[937] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Range"] = 97.1,
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
}, -- [33]
{
["Done"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [34]
{
["PickUp"] = {
940, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [35]
{
["ExtraLine"] = "back to Darnassus",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
["Range"] = 22.41,
["TT"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
}, -- [36]
{
["CRange"] = 923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
["Range"] = 17.27,
["TT"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
}, -- [37]
{
["Done"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [38]
{
["PickUp"] = {
2498, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [39]
{
["Done"] = {
940, -- [1]
6341, -- [2]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [40]
{
["PickUp"] = {
952, -- [1]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [41]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
["Range"] = 15.14,
["TT"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
}, -- [42]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
["Range"] = 8.01,
["TT"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
}, -- [43]
{
["Done"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [44]
{
["PickUp"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [45]
{
["ExtraLine"] = "Offer Sacrifice",
["Qpart"] = {
[2520] = {
["1"] = "1",
},
},
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
["Button"] = 8155,
["Range"] = 0.1,
["TT"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
}, -- [46]
{
["ExtraLine"] = "upstairs",
["Done"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9632.1,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [47]
{
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.1,
},
["UseHS"] = 934,
["Zone"] = "1657 (Darnassus)",
}, -- [48]
{
["Done"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.8,
["x"] = 966.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [49]
{
["Done"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
935, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["Done"] = {
931, -- [1]
930, -- [2]
2498, -- [3]
},
["TT"] = {
["y"] = 9507.4,
["x"] = 713.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507,
["x"] = 715,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Qpart"] = {
[2499] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
}, -- [54]
{
["Done"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 713.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["Qpart"] = {
[4161] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
["Range"] = 70.71,
["TT"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
}, -- [56]
{
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 9750.8,
["x"] = 905.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [57]
{
["ExtraLine"] = "use teleport",
["CRange"] = 6344,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 8786.3,
["x"] = 967.4,
},
["Range"] = 29.86,
["TT"] = {
["y"] = 9958.7,
["x"] = 2625.5,
},
}, -- [58]
{
["UseFlightPath"] = 3524,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-12NightElf-Hunter"] = {
{
["PickUp"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10328.6,
["x"] = 826.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["PickUp"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10389.5,
["x"] = 764,
},
["Fillers"] = {
[456] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
}, -- [2]
{
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [3]
{
["PickUp"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [4]
{
["Qpart"] = {
[459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 42.7,
["TT"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
}, -- [5]
{
["Qpart"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
["Range"] = 74.81,
["TT"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
}, -- [6]
{
["Done"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297.2,
["x"] = 870.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [7]
{
["Done"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [8]
{
["PickUp"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [9]
{
["ExtraLine"] = "Class Quest",
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["PickUp"] = {
3117, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [10]
{
["PickUp"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417.4,
["x"] = 870.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [11]
{
["PickUp"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10408.4,
["x"] = 714.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [12]
{
["Done"] = {
3117, -- [1]
},
["TT"] = {
["y"] = 10526.4,
["x"] = 778.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [15]
{
["ExtraLine"] = "Train abilitys and sell",
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
}, -- [16]
{
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
[916] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
["Range"] = 12.51,
["TT"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
}, -- [17]
{
["Done"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [18]
{
["PickUp"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [19]
{
["Qpart"] = {
[916] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
["Range"] = 41.46,
["TT"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
}, -- [20]
{
["Qpart"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
["Range"] = 81.95,
["TT"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
}, -- [21]
{
["Done"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [22]
{
["PickUp"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [23]
{
["Done"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10328.1,
["x"] = 826.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [24]
{
["Done"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["PickUp"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [26]
{
["ExtraLine"] = "sell and see trainer if you need",
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
["Range"] = 54.57,
["TT"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
}, -- [27]
{
["Qpart"] = {
[3521] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
["Range"] = 61.25,
["TT"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
}, -- [28]
{
["Qpart"] = {
[3521] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
["Range"] = 89.15,
["TT"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
}, -- [29]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Range"] = 6.78,
["TT"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
}, -- [30]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
["Range"] = 13.89,
["TT"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
}, -- [31]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
["Range"] = 11.35,
["TT"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
}, -- [32]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
["Range"] = 8.1,
["TT"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
}, -- [33]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10986,
["x"] = 950.6,
},
["Range"] = 15.1,
["TT"] = {
["y"] = 10986,
["x"] = 950.6,
},
}, -- [34]
{
["Qpart"] = {
[917] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
["Range"] = 0.13,
["TT"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
}, -- [35]
{
["Qpart"] = {
[3521] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["Range"] = 57.49,
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
}, -- [36]
{
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["UseHS"] = 917,
["Zone"] = "141 (Teldrassil)",
}, -- [37]
{
["Done"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [38]
{
["PickUp"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [39]
{
["Done"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [40]
{
["PickUp"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [41]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 920,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
["Range"] = 13.2,
["TT"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
}, -- [42]
{
["ExtraLine"] = "up to top hut",
["Done"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10492.3,
["x"] = 807.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [43]
{
["PickUp"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.8,
["x"] = 806.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [44]
{
["CRange"] = 3522,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
["Range"] = 19.16,
["TT"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
}, -- [45]
{
["Done"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10711,
["x"] = 1034.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [46]
{
["ExtraLine"] = "Fill Phial in the moonwell",
["Qpart"] = {
[921] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
["Button"] = 5185,
["Range"] = 0.1,
["TT"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
}, -- [47]
{
["ExtraLine"] = "Die and spirit rez or run",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
["Range"] = 11.45,
["TT"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
}, -- [48]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
["Range"] = 16.31,
["TT"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
}, -- [49]
{
["ExtraLine"] = "Handin in top hut",
["Done"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
928, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["PickUp"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 10214.1,
["x"] = 700.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9926.1,
["x"] = 736.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
["level"] = 6,
["xp"] = 1,
["TT"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
}, -- [54]
{
["PickUp"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9871.5,
["x"] = 960.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["PickUp"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9887,
["x"] = 966.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [56]
{
["ExtraLine"] = "Train First Aid",
["CRange"] = 475,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9903,
["x"] = 999.5,
},
["Range"] = 3.75,
["TT"] = {
["y"] = 9903,
["x"] = 999.5,
},
}, -- [57]
{
["ExtraLine"] = "Go up top of the tower",
["TT"] = {
["y"] = 9898.8,
["x"] = 986.2,
},
["PickUp"] = {
2438, -- [1]
932, -- [2]
},
["Zone"] = "141 (Teldrassil)",
}, -- [58]
{
["ExtraLine"] = "Repair and sell",
["Done"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["SetHS"] = 2438,
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["ExtraLine"] = "Train lvl6 abilitys",
["Done"] = {
928, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["Done"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [63]
{
["PickUp"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [64]
{
["Qpart"] = {
[919] = {
["1"] = "1",
},
[918] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Range"] = 148.41,
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
}, -- [65]
{
["Done"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [66]
{
["PickUp"] = {
922, -- [1]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 26.24,
["TT"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
}, -- [68]
{
["ExtraLine"] = "Fill Phial at moonwell",
["Qpart"] = {
[929] = {
["1"] = "1",
},
},
["Button"] = 5619,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 0.11,
["TT"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
}, -- [69]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [70]
{
["PickUp"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [71]
{
["ExtraLine"] = "Loot Dresser in the building",
["Qpart"] = {
[2438] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9807.8,
["x"] = 352,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9807.8,
["x"] = 352,
},
}, -- [72]
{
["Qpart"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
["Range"] = 237.21,
["TT"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
}, -- [73]
{
["Done"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9925.9,
["x"] = 736,
},
["Zone"] = "141 (Teldrassil)",
}, -- [74]
{
["PickUp"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9872.8,
["x"] = 957.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [75]
{
["Done"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [76]
{
["PickUp"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [77]
{
["ExtraLine"] = "Sell",
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
["Range"] = 28.99,
["TT"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
}, -- [78]
{
["Done"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [79]
{
["PickUp"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [80]
{
["ExtraLine"] = "Train cooking and accept quest",
["TT"] = {
["y"] = 9751.3,
["x"] = 906,
},
["PickUp"] = {
4161, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [81]
{
["ExtraLine"] = "Loot Fel Cones around the trees",
["Qpart"] = {
[489] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9779,
["x"] = 784.3,
},
["Fillers"] = {
[4161] = {
["1"] = "1",
},
},
["Range"] = 32.91,
["TT"] = {
["y"] = 9779,
["x"] = 784.3,
},
}, -- [82]
{
["Done"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9925.6,
["x"] = 737,
},
["Zone"] = "141 (Teldrassil)",
}, -- [83]
{
["ExtraLine"] = "Top of the tower",
["Done"] = {
2438, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [84]
{
["PickUp"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [85]
{
["ExtraLine"] = "Click Necklace after you loot it",
["Qpart"] = {
[2459] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
["Fillers"] = {
[2459] = {
["1"] = "1",
},
},
["Range"] = 0.17,
["TT"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
}, -- [86]
{
["Qpart"] = {
[2459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10020.7,
["x"] = 283,
},
["Range"] = 40.14,
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
}, -- [87]
{
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
["UseHS"] = 2459,
["Zone"] = "141 (Teldrassil)",
}, -- [88]
{
["ExtraLine"] = "Top of the tree",
["Done"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.2,
["x"] = 985.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [89]
{
["CRange"] = 933,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
["Range"] = 17.17,
["TT"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
}, -- [90]
{
["PickUp"] = {
487, -- [1]
},
["TT"] = {
["y"] = 10107,
["x"] = 1369.1,
},
["ExtraLine"] = "Follow the road untill you get the quest",
["Zone"] = "141 (Teldrassil)",
}, -- [91]
{
["Qpart"] = {
[487] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10029.5,
["x"] = 1415,
},
["Range"] = 58.65,
["TT"] = {
["y"] = 10029.5,
["x"] = 1415,
},
}, -- [92]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
["Range"] = 12.45,
["TT"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
}, -- [93]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
["Range"] = 9.11,
["TT"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
}, -- [94]
{
["ExtraLine"] = "Over the bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
["Range"] = 8.87,
["TT"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
}, -- [95]
{
["Qpart"] = {
[483] = {
["4"] = "4",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9772.7,
["x"] = 1554,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9772.7,
["x"] = 1554,
},
}, -- [96]
{
["ExtraLine"] = "back over bridge and take other",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
["Range"] = 9.69,
["TT"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
}, -- [97]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1580.5,
},
["Range"] = 10.77,
["TT"] = {
["y"] = 9754,
["x"] = 1580.5,
},
}, -- [98]
{
["Qpart"] = {
[483] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
}, -- [99]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
["Range"] = 7.78,
["TT"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
}, -- [100]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1632.8,
},
["Range"] = 9.92,
["TT"] = {
["y"] = 9754,
["x"] = 1632.8,
},
}, -- [101]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
["Range"] = 6.16,
["TT"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
}, -- [102]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
["Range"] = 6.8,
["TT"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
}, -- [103]
{
["PickUp"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1526.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [104]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
["Range"] = 7.12,
["TT"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
}, -- [105]
{
["Qpart"] = {
[483] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
}, -- [106]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
["Range"] = 8.64,
["TT"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
}, -- [107]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
["Range"] = 6.81,
["TT"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
}, -- [108]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9791.8,
["x"] = 1514,
},
["Range"] = 7.44,
["TT"] = {
["y"] = 9791.8,
["x"] = 1514,
},
}, -- [109]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 5.05,
["TT"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
}, -- [110]
{
["ExtraLine"] = "Go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 4.21,
["TT"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
}, -- [111]
{
["ExtraLine"] = "go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 7.06,
["TT"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
}, -- [112]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 10.5,
["TT"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
}, -- [113]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9860,
["x"] = 1459.5,
},
["Range"] = 6.04,
["TT"] = {
["y"] = 9860,
["x"] = 1459.5,
},
}, -- [114]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
["Range"] = 8.54,
["TT"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
}, -- [115]
{
["Qpart"] = {
[483] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9882,
["x"] = 1489.7,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9882,
["x"] = 1489.7,
},
}, -- [116]
{
["ExtraLine"] = "Kill shamans for the charm",
["Qpart"] = {
[2541] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
["Range"] = 35.09,
["TT"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
}, -- [117]
{
["ExtraLine"] = "go back to Oben",
["Done"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [118]
{
["PickUp"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [119]
{
["ExtraLine"] = "He patrols around the circle",
["Qpart"] = {
[2561] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
}, -- [120]
{
["ExtraLine"] = "Use Voodoo Charm on his corpse",
["Qpart"] = {
[2561] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
["Button"] = 8149,
["Range"] = 0.17,
["TT"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
}, -- [121]
{
["Done"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1525.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [122]
{
["ExtraLine"] = "Leave the Den",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
["Range"] = 14.27,
["TT"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
}, -- [123]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
["Range"] = 21.08,
["TT"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
}, -- [124]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
["Range"] = 17.2,
["TT"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
}, -- [125]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[933] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
["Button"] = 5621,
["Range"] = 0.15,
["TT"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
}, -- [126]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
["Range"] = 20.4,
["TT"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
}, -- [127]
{
["ExtraLine"] = "Click Plant",
["TT"] = {
["y"] = 9248.7,
["x"] = 1643.4,
},
["PickUp"] = {
930, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [128]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9483,
["x"] = 1305.6,
},
["Range"] = 23.15,
["TT"] = {
["y"] = 9483,
["x"] = 1305.6,
},
}, -- [129]
{
["TT"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["xp"] = 5500,
["Trigger"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["level"] = 9,
["Range"] = 64,
["Grind"] = 11951,
}, -- [130]
{
["ExtraLine"] = "Find Amara along the road again",
["Done"] = {
487, -- [1]
},
["TT"] = {
["y"] = 9914,
["x"] = 1196.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [131]
{
["Done"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [132]
{
["PickUp"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [133]
{
["ExtraLine"] = "Sell on the way",
["Done"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [134]
{
["PickUp"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [135]
{
["TT"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [136]
{
["PickUp"] = {
6063, -- [1]
},
["TT"] = {
["y"] = 9812.5,
["x"] = 929,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["Qpart"] = {
[6063] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9642.5,
["x"] = 1034.4,
},
["Button"] = 15921,
["Range"] = 53.19,
["TT"] = {
["y"] = 9642.5,
["x"] = 1034.4,
},
}, -- [2]
{
["Done"] = {
6063, -- [1]
},
["TT"] = {
["y"] = 9812.1,
["x"] = 928.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [3]
{
["PickUp"] = {
6101, -- [1]
},
["TT"] = {
["y"] = 9812.1,
["x"] = 928.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [4]
{
["Qpart"] = {
[6101] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Button"] = 15922,
["Trigger"] = {
["y"] = 9361.5,
["x"] = 648.2,
},
["Range"] = 46.37,
["TT"] = {
["y"] = 9361.5,
["x"] = 648.2,
},
}, -- [5]
{
["Done"] = {
6101, -- [1]
},
["TT"] = {
["y"] = 9812.6,
["x"] = 928.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [6]
{
["PickUp"] = {
6102, -- [1]
},
["TT"] = {
["y"] = 9812.6,
["x"] = 928.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [7]
{
["Qpart"] = {
[6102] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9467.9,
["x"] = 546.1,
},
["Button"] = 15923,
["Range"] = 48.36,
["TT"] = {
["y"] = 9467.9,
["x"] = 546.1,
},
}, -- [8]
{
["Done"] = {
6102, -- [1]
},
["TT"] = {
["y"] = 9812.1,
["x"] = 928.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [9]
{
["PickUp"] = {
6103, -- [1]
},
["TT"] = {
["y"] = 9812.1,
["x"] = 928.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [10]
{
["ExtraLine"] = "go to Darnassus",
["CRange"] = 6103,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9986.4,
["x"] = 1977.9,
},
["Range"] = 26.83,
["TT"] = {
["y"] = 9986.4,
["x"] = 1977.9,
},
}, -- [11]
{
["PickUp"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 9917.8,
["x"] = 2189.9,
},
["Zone"] = "1657 (Darnassus)",
}, -- [12]
{
["ExtraLine"] = "Weapon master here",
["CRange"] = 6103,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9908.5,
["x"] = 2329.2,
},
["Range"] = 4.12,
["TT"] = {
["y"] = 9908.5,
["x"] = 2329.2,
},
}, -- [13]
{
["Done"] = {
922, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2533.6,
},
["Zone"] = "1657 (Darnassus)",
}, -- [14]
{
["PickUp"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2533.6,
},
["Zone"] = "1657 (Darnassus)",
}, -- [15]
{
["Done"] = {
6103, -- [1]
},
["TT"] = {
["y"] = 10177.6,
["x"] = 2511.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [16]
{
["PickUp"] = {
2519, -- [1]
},
["TT"] = {
["y"] = 9915.2,
["x"] = 2631.6,
},
["Zone"] = "1657 (Darnassus)",
}, -- [17]
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9905.2,
["x"] = 2534.7,
},
["Range"] = 13.79,
["TT"] = {
["y"] = 9905.2,
["x"] = 2534.7,
},
}, -- [18]
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9684.8,
["x"] = 2525,
},
["Range"] = 9.57,
["TT"] = {
["y"] = 9684.8,
["x"] = 2525,
},
}, -- [19]
{
["Done"] = {
2519, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [20]
{
["PickUp"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [21]
{
["CRange"] = 486,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9697.9,
["x"] = 2523.6,
},
["Range"] = 20.45,
["TT"] = {
["y"] = 9697.9,
["x"] = 2523.6,
},
}, -- [22]
{
["ExtraLine"] = "back to Teldrassil",
["CRange"] = 486,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
["Range"] = 18.34,
["TT"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
}, -- [23]
{
["CRange"] = 486,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985,
["x"] = 1965.2,
},
["Range"] = 12.4,
["TT"] = {
["y"] = 9985,
["x"] = 1965.2,
},
}, -- [24]
{
["PickUp"] = {
930, -- [1]
},
["TT"] = {
["y"] = 9250.5,
["x"] = 1643.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["Qpart"] = {
[486] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
["Range"] = 0.12,
["TT"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
}, -- [26]
{
["PickUp"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10664.7,
["x"] = 1863.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [27]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[7383] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
["Button"] = 5623,
["Range"] = 0.12,
["TT"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
}, -- [28]
{
["Qpart"] = {
[923] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.3,
["x"] = 1684.9,
},
["Range"] = 61.34,
["TT"] = {
["y"] = 10677.6,
["x"] = 1683.5,
},
}, -- [29]
{
["ExtraLine"] = "Blackmoss the Fetid drops a quest",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
["Range"] = 8.56,
["TT"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
}, -- [30]
{
["Qpart"] = {
[2518] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
["Range"] = 42.89,
["TT"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
}, -- [31]
{
["PickUp"] = {
931, -- [1]
},
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [32]
{
["Qpart"] = {
[937] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Range"] = 97.1,
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
}, -- [33]
{
["Done"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [34]
{
["PickUp"] = {
940, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [35]
{
["ExtraLine"] = "back to Darnassus",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
["Range"] = 22.41,
["TT"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
}, -- [36]
{
["CRange"] = 923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
["Range"] = 17.27,
["TT"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
}, -- [37]
{
["Done"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [38]
{
["PickUp"] = {
2498, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [39]
{
["Done"] = {
940, -- [1]
6341, -- [2]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [40]
{
["PickUp"] = {
952, -- [1]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [41]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
["Range"] = 15.14,
["TT"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
}, -- [42]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
["Range"] = 8.01,
["TT"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
}, -- [43]
{
["Done"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [44]
{
["PickUp"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [45]
{
["ExtraLine"] = "Offer Sacrifice",
["Qpart"] = {
[2520] = {
["1"] = "1",
},
},
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
["Button"] = 8155,
["Range"] = 0.1,
["TT"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
}, -- [46]
{
["ExtraLine"] = "upstairs",
["Done"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9632.1,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [47]
{
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.1,
},
["UseHS"] = 934,
["Zone"] = "1657 (Darnassus)",
}, -- [48]
{
["Done"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.8,
["x"] = 966.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [49]
{
["Done"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
935, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["Done"] = {
931, -- [1]
930, -- [2]
2498, -- [3]
},
["TT"] = {
["y"] = 9507.4,
["x"] = 713.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507,
["x"] = 715,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Qpart"] = {
[2499] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
}, -- [54]
{
["Done"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 713.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["Qpart"] = {
[4161] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
["Range"] = 70.71,
["TT"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
}, -- [56]
{
["Done"] = {
4161, -- [1]
},
["TT"] = {
["y"] = 9750.8,
["x"] = 905.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [57]
{
["ExtraLine"] = "use teleport",
["CRange"] = 6344,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 8786.3,
["x"] = 967.4,
},
["Range"] = 29.86,
["TT"] = {
["y"] = 9958.7,
["x"] = 2625.5,
},
}, -- [58]
{
["Done"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["PickUp"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["Done"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["UseFlightPath"] = 6342,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["Done"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [64]
{
["PickUp"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [65]
{
["UseFlightPath"] = 6343,
["Name"] = "Rut'theran Village, Teldrassil",
["TT"] = {
["y"] = 6343.8,
["x"] = 562.2,
},
}, -- [2]
{
["Done"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 8693.8,
["x"] = 950.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["UseFlightPath"] = 12486,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-12NightElf-Priest"] = {
{
["PickUp"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10328.6,
["x"] = 826.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["PickUp"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10389.5,
["x"] = 764,
},
["Fillers"] = {
[456] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
}, -- [2]
{
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [3]
{
["PickUp"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [4]
{
["Qpart"] = {
[459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 42.7,
["TT"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
}, -- [5]
{
["Qpart"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
["Range"] = 74.81,
["TT"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
}, -- [6]
{
["Done"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297.2,
["x"] = 870.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [7]
{
["Done"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [8]
{
["PickUp"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [9]
{
["PickUp"] = {
3119,
},
["Zone"] = "141 (Teldrassil)",
["TT"] = {
["y"] = 10329.2,
["x"] = 826.1,
},
},
{
["PickUp"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417.4,
["x"] = 870.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [11]
{
["PickUp"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10408.4,
["x"] = 714.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [12]
{
["CRange"] = 3119,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10408.2,
["x"] = 760.3,
},
["Range"] = 4.47,
["TT"] = {
["y"] = 10408.2,
["x"] = 760.3,
},
},
{
["ExtraLine"] = "Upstairs",
["Zone"] = "141 (Teldrassil)",
["Done"] = {
3119,
},
["TT"] = {
["y"] = 10458.2,
["x"] = 801.9,
},
},
{
["ExtraLine"] = "Train abilitys and sell",
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
}, -- [16]
{
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
[916] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
["Range"] = 12.51,
["TT"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
}, -- [17]
{
["Done"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [18]
{
["PickUp"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [19]
{
["Qpart"] = {
[916] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
["Range"] = 41.46,
["TT"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
}, -- [20]
{
["Qpart"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
["Range"] = 81.95,
["TT"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
}, -- [21]
{
["Done"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [22]
{
["PickUp"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [23]
{
["Done"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10328.1,
["x"] = 826.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [24]
{
["Done"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["PickUp"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [26]
{
["ExtraLine"] = "sell and see trainer if you need",
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
["Range"] = 54.57,
["TT"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
}, -- [27]
{
["Qpart"] = {
[3521] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
["Range"] = 61.25,
["TT"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
}, -- [28]
{
["Qpart"] = {
[3521] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
["Range"] = 89.15,
["TT"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
}, -- [29]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Range"] = 6.78,
["TT"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
}, -- [30]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
["Range"] = 13.89,
["TT"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
}, -- [31]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
["Range"] = 11.35,
["TT"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
}, -- [32]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
["Range"] = 8.1,
["TT"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
}, -- [33]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10986,
["x"] = 950.6,
},
["Range"] = 15.1,
["TT"] = {
["y"] = 10986,
["x"] = 950.6,
},
}, -- [34]
{
["Qpart"] = {
[917] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
["Range"] = 0.13,
["TT"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
}, -- [35]
{
["Qpart"] = {
[3521] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["Range"] = 57.49,
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
}, -- [36]
{
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["UseHS"] = 917,
["Zone"] = "141 (Teldrassil)",
}, -- [37]
{
["Done"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [38]
{
["PickUp"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [39]
{
["Done"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [40]
{
["PickUp"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [41]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 920,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
["Range"] = 13.2,
["TT"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
}, -- [42]
{
["ExtraLine"] = "up to top hut",
["Done"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10492.3,
["x"] = 807.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [43]
{
["PickUp"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.8,
["x"] = 806.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [44]
{
["CRange"] = 3522,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
["Range"] = 19.16,
["TT"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
}, -- [45]
{
["Done"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10711,
["x"] = 1034.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [46]
{
["ExtraLine"] = "Fill Phial in the moonwell",
["Qpart"] = {
[921] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
["Button"] = 5185,
["Range"] = 0.1,
["TT"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
}, -- [47]
{
["ExtraLine"] = "Die and spirit rez or run",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
["Range"] = 11.45,
["TT"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
}, -- [48]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
["Range"] = 16.31,
["TT"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
}, -- [49]
{
["ExtraLine"] = "Handin in top hut",
["Done"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
928, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["PickUp"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 10214.1,
["x"] = 700.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9926.1,
["x"] = 736.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
["level"] = 6,
["xp"] = 1,
["TT"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
}, -- [54]
{
["PickUp"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9871.5,
["x"] = 960.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["PickUp"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9887,
["x"] = 966.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [56]
{
["ExtraLine"] = "Train First Aid",
["CRange"] = 475,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9903,
["x"] = 999.5,
},
["Range"] = 3.75,
["TT"] = {
["y"] = 9903,
["x"] = 999.5,
},
}, -- [57]
{
["ExtraLine"] = "Go up top of the tower",
["TT"] = {
["y"] = 9898.8,
["x"] = 986.2,
},
["PickUp"] = {
2438, -- [1]
932, -- [2]
},
["Zone"] = "141 (Teldrassil)",
}, -- [58]
{
["ExtraLine"] = "Repair and sell",
["Done"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["SetHS"] = 2438,
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["ExtraLine"] = "Train lvl6 abilitys",
["Done"] = {
928, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["Done"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [63]
{
["PickUp"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [64]
{
["Qpart"] = {
[919] = {
["1"] = "1",
},
[918] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Range"] = 148.41,
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
}, -- [65]
{
["Done"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [66]
{
["PickUp"] = {
922, -- [1]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 26.24,
["TT"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
}, -- [68]
{
["ExtraLine"] = "Fill Phial at moonwell",
["Qpart"] = {
[929] = {
["1"] = "1",
},
},
["Button"] = 5619,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 0.11,
["TT"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
}, -- [69]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [70]
{
["PickUp"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [71]
{
["ExtraLine"] = "Loot Dresser in the building",
["Qpart"] = {
[2438] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9807.8,
["x"] = 352,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9807.8,
["x"] = 352,
},
}, -- [72]
{
["Qpart"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
["Range"] = 237.21,
["TT"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
}, -- [73]
{
["Done"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9925.9,
["x"] = 736,
},
["Zone"] = "141 (Teldrassil)",
}, -- [74]
{
["PickUp"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9872.8,
["x"] = 957.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [75]
{
["Done"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [76]
{
["PickUp"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [77]
{
["ExtraLine"] = "Sell",
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
["Range"] = 28.99,
["TT"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
}, -- [78]
{
["Done"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [79]
{
["PickUp"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [80]
{
["ExtraLine"] = "Train cooking and accept quest",
["TT"] = {
["y"] = 9751.3,
["x"] = 906,
},
["PickUp"] = {
4161, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [81]
{
["ExtraLine"] = "Loot Fel Cones around the trees",
["Qpart"] = {
[489] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9779,
["x"] = 784.3,
},
["Fillers"] = {
[4161] = {
["1"] = "1",
},
},
["Range"] = 32.91,
["TT"] = {
["y"] = 9779,
["x"] = 784.3,
},
}, -- [82]
{
["Done"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9925.6,
["x"] = 737,
},
["Zone"] = "141 (Teldrassil)",
}, -- [83]
{
["ExtraLine"] = "Top of the tower",
["Done"] = {
2438, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [84]
{
["PickUp"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [85]
{
["ExtraLine"] = "Click Necklace after you loot it",
["Qpart"] = {
[2459] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
["Fillers"] = {
[2459] = {
["1"] = "1",
},
},
["Range"] = 0.17,
["TT"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
}, -- [86]
{
["Qpart"] = {
[2459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10020.7,
["x"] = 283,
},
["Range"] = 40.14,
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
}, -- [87]
{
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
["UseHS"] = 2459,
["Zone"] = "141 (Teldrassil)",
}, -- [88]
{
["ExtraLine"] = "Top of the tree",
["Done"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.2,
["x"] = 985.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [89]
{
["CRange"] = 933,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
["Range"] = 17.17,
["TT"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
}, -- [90]
{
["PickUp"] = {
487, -- [1]
},
["TT"] = {
["y"] = 10107,
["x"] = 1369.1,
},
["ExtraLine"] = "Follow the road untill you get the quest",
["Zone"] = "141 (Teldrassil)",
}, -- [91]
{
["Qpart"] = {
[487] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10029.5,
["x"] = 1415,
},
["Range"] = 58.65,
["TT"] = {
["y"] = 10029.5,
["x"] = 1415,
},
}, -- [92]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
["Range"] = 12.45,
["TT"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
}, -- [93]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
["Range"] = 9.11,
["TT"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
}, -- [94]
{
["ExtraLine"] = "Over the bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
["Range"] = 8.87,
["TT"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
}, -- [95]
{
["Qpart"] = {
[483] = {
["4"] = "4",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9772.7,
["x"] = 1554,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9772.7,
["x"] = 1554,
},
}, -- [96]
{
["ExtraLine"] = "back over bridge and take other",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
["Range"] = 9.69,
["TT"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
}, -- [97]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1580.5,
},
["Range"] = 10.77,
["TT"] = {
["y"] = 9754,
["x"] = 1580.5,
},
}, -- [98]
{
["Qpart"] = {
[483] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
}, -- [99]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
["Range"] = 7.78,
["TT"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
}, -- [100]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1632.8,
},
["Range"] = 9.92,
["TT"] = {
["y"] = 9754,
["x"] = 1632.8,
},
}, -- [101]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
["Range"] = 6.16,
["TT"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
}, -- [102]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
["Range"] = 6.8,
["TT"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
}, -- [103]
{
["PickUp"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1526.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [104]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
["Range"] = 7.12,
["TT"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
}, -- [105]
{
["Qpart"] = {
[483] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
}, -- [106]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
["Range"] = 8.64,
["TT"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
}, -- [107]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
["Range"] = 6.81,
["TT"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
}, -- [108]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9791.8,
["x"] = 1514,
},
["Range"] = 7.44,
["TT"] = {
["y"] = 9791.8,
["x"] = 1514,
},
}, -- [109]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 5.05,
["TT"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
}, -- [110]
{
["ExtraLine"] = "Go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 4.21,
["TT"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
}, -- [111]
{
["ExtraLine"] = "go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 7.06,
["TT"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
}, -- [112]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 10.5,
["TT"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
}, -- [113]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9860,
["x"] = 1459.5,
},
["Range"] = 6.04,
["TT"] = {
["y"] = 9860,
["x"] = 1459.5,
},
}, -- [114]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
["Range"] = 8.54,
["TT"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
}, -- [115]
{
["Qpart"] = {
[483] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9882,
["x"] = 1489.7,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9882,
["x"] = 1489.7,
},
}, -- [116]
{
["ExtraLine"] = "Kill shamans for the charm",
["Qpart"] = {
[2541] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
["Range"] = 35.09,
["TT"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
}, -- [117]
{
["ExtraLine"] = "go back to Oben",
["Done"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [118]
{
["PickUp"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [119]
{
["ExtraLine"] = "He patrols around the circle",
["Qpart"] = {
[2561] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
}, -- [120]
{
["ExtraLine"] = "Use Voodoo Charm on his corpse",
["Qpart"] = {
[2561] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
["Button"] = 8149,
["Range"] = 0.17,
["TT"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
}, -- [121]
{
["Done"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1525.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [122]
{
["ExtraLine"] = "Leave the Den",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
["Range"] = 14.27,
["TT"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
}, -- [123]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
["Range"] = 21.08,
["TT"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
}, -- [124]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
["Range"] = 17.2,
["TT"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
}, -- [125]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[933] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
["Button"] = 5621,
["Range"] = 0.15,
["TT"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
}, -- [126]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
["Range"] = 20.4,
["TT"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
}, -- [127]
{
["ExtraLine"] = "Click Plant",
["TT"] = {
["y"] = 9248.7,
["x"] = 1643.4,
},
["PickUp"] = {
930, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [128]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9483,
["x"] = 1305.6,
},
["Range"] = 23.15,
["TT"] = {
["y"] = 9483,
["x"] = 1305.6,
},
}, -- [129]
{
["TT"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["xp"] = 5500,
["Trigger"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["level"] = 9,
["Range"] = 64,
["Grind"] = 11951,
}, -- [130]
{
["ExtraLine"] = "Find Amara along the road again",
["Done"] = {
487, -- [1]
},
["TT"] = {
["y"] = 9914,
["x"] = 1196.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [131]
{
["Done"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [132]
{
["PickUp"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [133]
{
["ExtraLine"] = "Sell on the way",
["Done"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [134]
{
["PickUp"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [135]
{
["TT"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [136]
{
["PickUp"] = {
5628, -- [1]
},
["TT"] = {
["y"] = 9905.4,
["x"] = 985.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["ExtraLine"] = "Go to Darnassus",
["CRange"] = 5628,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.6,
["x"] = 1976.6,
},
["Range"] = 25.06,
["TT"] = {
["y"] = 9985.6,
["x"] = 1976.6,
},
}, -- [2]
{
["PickUp"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 9918.2,
["x"] = 2189.8,
},
["Zone"] = "1657 (Darnassus)",
}, -- [3]
{
["ExtraLine"] = "Weapons trainer",
["CRange"] = 5628,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9939.6,
["x"] = 2284.2,
},
["Range"] = 3.14,
["TT"] = {
["y"] = 9939.6,
["x"] = 2284.2,
},
}, -- [4]
{
["Done"] = {
922, -- [1]
},
["TT"] = {
["y"] = 10085.6,
["x"] = 2534.5,
},
["Zone"] = "1657 (Darnassus)",
}, -- [5]
{
["PickUp"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.6,
["x"] = 2534.5,
},
["Zone"] = "1657 (Darnassus)",
}, -- [6]
{
["PickUp"] = {
2519, -- [1]
},
["TT"] = {
["y"] = 9915.6,
["x"] = 2632.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [7]
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9903.2,
["x"] = 2533.1,
},
["Range"] = 11.86,
["TT"] = {
["y"] = 9903.2,
["x"] = 2533.1,
},
}, -- [8]
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9694.8,
["x"] = 2526.8,
},
["Range"] = 14.41,
["TT"] = {
["y"] = 9694.8,
["x"] = 2526.8,
},
}, -- [9]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
2519, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.5,
},
["Zone"] = "1657 (Darnassus)",
}, -- [10]
{
["PickUp"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.5,
},
["Zone"] = "1657 (Darnassus)",
}, -- [11]
{
["Done"] = {
5628, -- [1]
},
["TT"] = {
["y"] = 9665.1,
["x"] = 2519.9,
},
["Zone"] = "1657 (Darnassus)",
}, -- [12]
{
["CRange"] = 923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9707.1,
["x"] = 2525.8,
},
["Range"] = 8.21,
["TT"] = {
["y"] = 9707.1,
["x"] = 2525.8,
},
}, -- [13]
{
["ExtraLine"] = "Go to Teldrassil",
["CRange"] = 923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9986,
["x"] = 2025.1,
},
["Range"] = 17.13,
["TT"] = {
["y"] = 9986,
["x"] = 2025.1,
},
}, -- [14]
{
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.4,
["x"] = 1955.9,
},
["Range"] = 27.72,
["TT"] = {
["y"] = 9985.4,
["x"] = 1955.9,
},
}, -- [15]
{
["ExtraLine"] = "back to Teldrassil",
["CRange"] = 486,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
["Range"] = 18.34,
["TT"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
}, -- [23]
{
["CRange"] = 486,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985,
["x"] = 1965.2,
},
["Range"] = 12.4,
["TT"] = {
["y"] = 9985,
["x"] = 1965.2,
},
}, -- [24]
{
["PickUp"] = {
930, -- [1]
},
["TT"] = {
["y"] = 9250.5,
["x"] = 1643.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["Qpart"] = {
[486] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
["Range"] = 0.12,
["TT"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
}, -- [26]
{
["PickUp"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10664.7,
["x"] = 1863.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [27]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[7383] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
["Button"] = 5623,
["Range"] = 0.12,
["TT"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
}, -- [28]
{
["Qpart"] = {
[923] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.3,
["x"] = 1684.9,
},
["Range"] = 61.34,
["TT"] = {
["y"] = 10677.6,
["x"] = 1683.5,
},
}, -- [29]
{
["ExtraLine"] = "Blackmoss the Fetid drops a quest",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
["Range"] = 8.56,
["TT"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
}, -- [30]
{
["Qpart"] = {
[2518] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
["Range"] = 42.89,
["TT"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
}, -- [31]
{
["PickUp"] = {
931, -- [1]
},
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [32]
{
["Qpart"] = {
[937] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Range"] = 97.1,
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
}, -- [33]
{
["Done"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [34]
{
["PickUp"] = {
940, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [35]
{
["ExtraLine"] = "back to Darnassus",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
["Range"] = 22.41,
["TT"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
}, -- [36]
{
["CRange"] = 923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
["Range"] = 17.27,
["TT"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
}, -- [37]
{
["Done"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [38]
{
["PickUp"] = {
2498, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [39]
{
["Done"] = {
940, -- [1]
6341, -- [2]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [40]
{
["PickUp"] = {
952, -- [1]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [41]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
["Range"] = 15.14,
["TT"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
}, -- [42]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
["Range"] = 8.01,
["TT"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
}, -- [43]
{
["Done"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [44]
{
["PickUp"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [45]
{
["ExtraLine"] = "Offer Sacrifice",
["Qpart"] = {
[2520] = {
["1"] = "1",
},
},
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
["Button"] = 8155,
["Range"] = 0.1,
["TT"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
}, -- [46]
{
["ExtraLine"] = "upstairs",
["Done"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9632.1,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [47]
{
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.1,
},
["UseHS"] = 934,
["Zone"] = "1657 (Darnassus)",
}, -- [48]
{
["Done"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.8,
["x"] = 966.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [49]
{
["Done"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
935, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["Done"] = {
931, -- [1]
930, -- [2]
2498, -- [3]
},
["TT"] = {
["y"] = 9507.4,
["x"] = 713.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507,
["x"] = 715,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Qpart"] = {
[2499] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
}, -- [54]
{
["Done"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 713.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["Qpart"] = {
[4161] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
["Range"] = 70.71,
["TT"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
}, -- [56]
{
["Done"] = {
4161, -- [1]
},
["TT"] = {
["y"] = 9750.8,
["x"] = 905.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [57]
{
["ExtraLine"] = "use teleport",
["CRange"] = 6344,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 8786.3,
["x"] = 967.4,
},
["Range"] = 29.86,
["TT"] = {
["y"] = 9958.7,
["x"] = 2625.5,
},
}, -- [58]
{
["Done"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["PickUp"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["Done"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["UseFlightPath"] = 6342,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["Done"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [64]
{
["PickUp"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [65]
{
["UseFlightPath"] = 6343,
["Name"] = "Rut'theran Village, Teldrassil",
["TT"] = {
["y"] = 6343.8,
["x"] = 562.2,
},
}, -- [2]
{
["Done"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 8693.8,
["x"] = 950.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["UseFlightPath"] = 12486,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-12NightElf-Rogue"] = {
{
["PickUp"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10328.6,
["x"] = 826.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["PickUp"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10389.5,
["x"] = 764,
},
["Fillers"] = {
[456] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
}, -- [2]
{
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [3]
{
["PickUp"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [4]
{
["Qpart"] = {
[459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 42.7,
["TT"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
}, -- [5]
{
["Qpart"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
["Range"] = 74.81,
["TT"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
}, -- [6]
{
["Done"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297.2,
["x"] = 870.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [7]
{
["Done"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [8]
{
["PickUp"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [9]
{
["PickUp"] = {
3118,
},
["Zone"] = "141 (Teldrassil)",
["TT"] = {
["y"] = 10329,
["x"] = 826.1,
},
},
{
["PickUp"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417.4,
["x"] = 870.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [11]
{
["PickUp"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10408.4,
["x"] = 714.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [12]
{
["CRange"] = 3118,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10390.9,
["x"] = 762.6,
},
["Range"] = 10.59,
["TT"] = {
["y"] = 10390.9,
["x"] = 762.6,
},
},
{
["CRange"] = 3118,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10477.3,
["x"] = 800.4,
},
["Range"] = 7.99,
["TT"] = {
["y"] = 10477.3,
["x"] = 800.4,
},
},
{
["Zone"] = "141 (Teldrassil)",
["Done"] = {
3118,
},
["TT"] = {
["y"] = 10519,
["x"] = 777.9,
},
},
{
["ExtraLine"] = "Train abilitys and sell",
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
}, -- [16]
{
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
[916] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
["Range"] = 12.51,
["TT"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
}, -- [17]
{
["Done"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [18]
{
["PickUp"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [19]
{
["Qpart"] = {
[916] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
["Range"] = 41.46,
["TT"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
}, -- [20]
{
["Qpart"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
["Range"] = 81.95,
["TT"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
}, -- [21]
{
["Done"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [22]
{
["PickUp"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [23]
{
["Done"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10328.1,
["x"] = 826.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [24]
{
["Done"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["PickUp"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [26]
{
["ExtraLine"] = "sell and see trainer if you need",
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
["Range"] = 54.57,
["TT"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
}, -- [27]
{
["Qpart"] = {
[3521] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
["Range"] = 61.25,
["TT"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
}, -- [28]
{
["Qpart"] = {
[3521] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
["Range"] = 89.15,
["TT"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
}, -- [29]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Range"] = 6.78,
["TT"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
}, -- [30]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
["Range"] = 13.89,
["TT"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
}, -- [31]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
["Range"] = 11.35,
["TT"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
}, -- [32]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
["Range"] = 8.1,
["TT"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
}, -- [33]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10986,
["x"] = 950.6,
},
["Range"] = 15.1,
["TT"] = {
["y"] = 10986,
["x"] = 950.6,
},
}, -- [34]
{
["Qpart"] = {
[917] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
["Range"] = 0.13,
["TT"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
}, -- [35]
{
["Qpart"] = {
[3521] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["Range"] = 57.49,
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
}, -- [36]
{
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["UseHS"] = 917,
["Zone"] = "141 (Teldrassil)",
}, -- [37]
{
["Done"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [38]
{
["PickUp"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [39]
{
["Done"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [40]
{
["PickUp"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [41]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 920,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
["Range"] = 13.2,
["TT"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
}, -- [42]
{
["ExtraLine"] = "up to top hut",
["Done"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10492.3,
["x"] = 807.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [43]
{
["PickUp"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.8,
["x"] = 806.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [44]
{
["CRange"] = 3522,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
["Range"] = 19.16,
["TT"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
}, -- [45]
{
["Done"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10711,
["x"] = 1034.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [46]
{
["ExtraLine"] = "Fill Phial in the moonwell",
["Qpart"] = {
[921] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
["Button"] = 5185,
["Range"] = 0.1,
["TT"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
}, -- [47]
{
["ExtraLine"] = "Die and spirit rez or run",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
["Range"] = 11.45,
["TT"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
}, -- [48]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
["Range"] = 16.31,
["TT"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
}, -- [49]
{
["ExtraLine"] = "Handin in top hut",
["Done"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
928, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["PickUp"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 10214.1,
["x"] = 700.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9926.1,
["x"] = 736.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
["level"] = 6,
["xp"] = 1,
["TT"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
}, -- [54]
{
["PickUp"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9871.5,
["x"] = 960.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["PickUp"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9887,
["x"] = 966.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [56]
{
["ExtraLine"] = "Train First Aid",
["CRange"] = 475,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9903,
["x"] = 999.5,
},
["Range"] = 3.75,
["TT"] = {
["y"] = 9903,
["x"] = 999.5,
},
}, -- [57]
{
["ExtraLine"] = "Go up top of the tower",
["TT"] = {
["y"] = 9898.8,
["x"] = 986.2,
},
["PickUp"] = {
2438, -- [1]
932, -- [2]
},
["Zone"] = "141 (Teldrassil)",
}, -- [58]
{
["ExtraLine"] = "Repair and sell",
["Done"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["SetHS"] = 2438,
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["ExtraLine"] = "Train lvl6 abilitys",
["Done"] = {
928, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["Done"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [63]
{
["PickUp"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [64]
{
["Qpart"] = {
[919] = {
["1"] = "1",
},
[918] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Range"] = 148.41,
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
}, -- [65]
{
["Done"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [66]
{
["PickUp"] = {
922, -- [1]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 26.24,
["TT"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
}, -- [68]
{
["ExtraLine"] = "Fill Phial at moonwell",
["Qpart"] = {
[929] = {
["1"] = "1",
},
},
["Button"] = 5619,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 0.11,
["TT"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
}, -- [69]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [70]
{
["PickUp"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [71]
{
["ExtraLine"] = "Loot Dresser in the building",
["Qpart"] = {
[2438] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9807.8,
["x"] = 352,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9807.8,
["x"] = 352,
},
}, -- [72]
{
["Qpart"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
["Range"] = 237.21,
["TT"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
}, -- [73]
{
["Done"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9925.9,
["x"] = 736,
},
["Zone"] = "141 (Teldrassil)",
}, -- [74]
{
["PickUp"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9872.8,
["x"] = 957.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [75]
{
["Done"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [76]
{
["PickUp"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [77]
{
["ExtraLine"] = "Sell",
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
["Range"] = 28.99,
["TT"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
}, -- [78]
{
["Done"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [79]
{
["PickUp"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [80]
{
["ExtraLine"] = "Train cooking and accept quest",
["TT"] = {
["y"] = 9751.3,
["x"] = 906,
},
["PickUp"] = {
4161, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [81]
{
["ExtraLine"] = "Loot Fel Cones around the trees",
["Qpart"] = {
[489] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9779,
["x"] = 784.3,
},
["Fillers"] = {
[4161] = {
["1"] = "1",
},
},
["Range"] = 32.91,
["TT"] = {
["y"] = 9779,
["x"] = 784.3,
},
}, -- [82]
{
["Done"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9925.6,
["x"] = 737,
},
["Zone"] = "141 (Teldrassil)",
}, -- [83]
{
["ExtraLine"] = "Top of the tower",
["Done"] = {
2438, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [84]
{
["PickUp"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [85]
{
["ExtraLine"] = "Click Necklace after you loot it",
["Qpart"] = {
[2459] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
["Fillers"] = {
[2459] = {
["1"] = "1",
},
},
["Range"] = 0.17,
["TT"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
}, -- [86]
{
["Qpart"] = {
[2459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10020.7,
["x"] = 283,
},
["Range"] = 40.14,
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
}, -- [87]
{
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
["UseHS"] = 2459,
["Zone"] = "141 (Teldrassil)",
}, -- [88]
{
["ExtraLine"] = "Top of the tree",
["Done"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.2,
["x"] = 985.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [89]
{
["CRange"] = 933,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
["Range"] = 17.17,
["TT"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
}, -- [90]
{
["PickUp"] = {
487, -- [1]
},
["TT"] = {
["y"] = 10107,
["x"] = 1369.1,
},
["ExtraLine"] = "Follow the road untill you get the quest",
["Zone"] = "141 (Teldrassil)",
}, -- [91]
{
["Qpart"] = {
[487] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10029.5,
["x"] = 1415,
},
["Range"] = 58.65,
["TT"] = {
["y"] = 10029.5,
["x"] = 1415,
},
}, -- [92]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
["Range"] = 12.45,
["TT"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
}, -- [93]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
["Range"] = 9.11,
["TT"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
}, -- [94]
{
["ExtraLine"] = "Over the bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
["Range"] = 8.87,
["TT"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
}, -- [95]
{
["Qpart"] = {
[483] = {
["4"] = "4",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9772.7,
["x"] = 1554,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9772.7,
["x"] = 1554,
},
}, -- [96]
{
["ExtraLine"] = "back over bridge and take other",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
["Range"] = 9.69,
["TT"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
}, -- [97]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1580.5,
},
["Range"] = 10.77,
["TT"] = {
["y"] = 9754,
["x"] = 1580.5,
},
}, -- [98]
{
["Qpart"] = {
[483] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
}, -- [99]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
["Range"] = 7.78,
["TT"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
}, -- [100]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1632.8,
},
["Range"] = 9.92,
["TT"] = {
["y"] = 9754,
["x"] = 1632.8,
},
}, -- [101]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
["Range"] = 6.16,
["TT"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
}, -- [102]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
["Range"] = 6.8,
["TT"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
}, -- [103]
{
["PickUp"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1526.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [104]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
["Range"] = 7.12,
["TT"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
}, -- [105]
{
["Qpart"] = {
[483] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
}, -- [106]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
["Range"] = 8.64,
["TT"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
}, -- [107]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
["Range"] = 6.81,
["TT"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
}, -- [108]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9791.8,
["x"] = 1514,
},
["Range"] = 7.44,
["TT"] = {
["y"] = 9791.8,
["x"] = 1514,
},
}, -- [109]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 5.05,
["TT"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
}, -- [110]
{
["ExtraLine"] = "Go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 4.21,
["TT"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
}, -- [111]
{
["ExtraLine"] = "go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 7.06,
["TT"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
}, -- [112]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 10.5,
["TT"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
}, -- [113]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9860,
["x"] = 1459.5,
},
["Range"] = 6.04,
["TT"] = {
["y"] = 9860,
["x"] = 1459.5,
},
}, -- [114]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
["Range"] = 8.54,
["TT"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
}, -- [115]
{
["Qpart"] = {
[483] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9882,
["x"] = 1489.7,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9882,
["x"] = 1489.7,
},
}, -- [116]
{
["ExtraLine"] = "Kill shamans for the charm",
["Qpart"] = {
[2541] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
["Range"] = 35.09,
["TT"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
}, -- [117]
{
["ExtraLine"] = "go back to Oben",
["Done"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [118]
{
["PickUp"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [119]
{
["ExtraLine"] = "He patrols around the circle",
["Qpart"] = {
[2561] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
}, -- [120]
{
["ExtraLine"] = "Use Voodoo Charm on his corpse",
["Qpart"] = {
[2561] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
["Button"] = 8149,
["Range"] = 0.17,
["TT"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
}, -- [121]
{
["Done"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1525.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [122]
{
["ExtraLine"] = "Leave the Den",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
["Range"] = 14.27,
["TT"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
}, -- [123]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
["Range"] = 21.08,
["TT"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
}, -- [124]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
["Range"] = 17.2,
["TT"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
}, -- [125]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[933] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
["Button"] = 5621,
["Range"] = 0.15,
["TT"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
}, -- [126]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
["Range"] = 20.4,
["TT"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
}, -- [127]
{
["ExtraLine"] = "Click Plant",
["TT"] = {
["y"] = 9248.7,
["x"] = 1643.4,
},
["PickUp"] = {
930, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [128]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9483,
["x"] = 1305.6,
},
["Range"] = 23.15,
["TT"] = {
["y"] = 9483,
["x"] = 1305.6,
},
}, -- [129]
{
["TT"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["xp"] = 5500,
["Trigger"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["level"] = 9,
["Range"] = 64,
["Grind"] = 11951,
}, -- [130]
{
["ExtraLine"] = "Find Amara along the road again",
["Done"] = {
487, -- [1]
},
["TT"] = {
["y"] = 9914,
["x"] = 1196.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [131]
{
["Done"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [132]
{
["PickUp"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [133]
{
["ExtraLine"] = "Sell on the way",
["Done"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [134]
{
["PickUp"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [135]
{
["TT"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [136]
{
["PickUp"] = {
2241,
},
["Zone"] = "141 (Teldrassil)",
["TT"] = {
["y"] = 9790.6,
["x"] = 943.3,
},
},
{
["ExtraLine"] = "Go to Darnassus",
["CRange"] = 2241,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.6,
["x"] = 1977.6,
},
["Range"] = 23.69,
["TT"] = {
["y"] = 9985.6,
["x"] = 1977.6,
},
},
{
["PickUp"] = {
6344,
},
["Zone"] = "1657 (Darnassus)",
["TT"] = {
["y"] = 9918.1,
["x"] = 2190.7,
},
},
{
["ExtraLine"] = "Weapons Trainer",
["CRange"] = 2241,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9940,
["x"] = 2284.6,
},
["Range"] = 2.67,
["TT"] = {
["y"] = 9940,
["x"] = 2284.6,
},
},
{
["Zone"] = "1657 (Darnassus)",
["Done"] = {
922,
},
["TT"] = {
["y"] = 10085.9,
["x"] = 2534.2,
},
},
{
["PickUp"] = {
923,
},
["Zone"] = "1657 (Darnassus)",
["TT"] = {
["y"] = 10085.9,
["x"] = 2534.2,
},
},
{
["CRange"] = 2241,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 10123.4,
["x"] = 2595.3,
},
["Range"] = 4.53,
["TT"] = {
["y"] = 10123.4,
["x"] = 2595.3,
},
},
{
["ExtraLine"] = "Go down",
["Zone"] = "1657 (Darnassus)",
["Done"] = {
2241,
},
["TT"] = {
["y"] = 10083.9,
["x"] = 2547.4,
},
},
{
["PickUp"] = {
2242,
},
["Zone"] = "1657 (Darnassus)",
["TT"] = {
["y"] = 10083.9,
["x"] = 2547.4,
},
},
{
["PickUp"] = {
2519,
},
["Zone"] = "1657 (Darnassus)",
["TT"] = {
["y"] = 9915,
["x"] = 2630.6,
},
},
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9907.3,
["x"] = 2535.1,
},
["Range"] = 11.16,
["TT"] = {
["y"] = 9907.3,
["x"] = 2535.1,
},
},
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9696.6,
["x"] = 2525.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 9696.6,
["x"] = 2525.5,
},
},
{
["ExtraLine"] = "Go upstairs",
["Zone"] = "1657 (Darnassus)",
["Done"] = {
2519,
},
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.4,
},
},
{
["PickUp"] = {
2518,
},
["Zone"] = "1657 (Darnassus)",
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.4,
},
},
{
["CRange"] = 2242,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9696.4,
["x"] = 2527.1,
},
["Range"] = 15.89,
["TT"] = {
["y"] = 9696.4,
["x"] = 2527.1,
},
},
{
["ExtraLine"] = "Back to Teldrassil",
["CRange"] = 2242,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.9,
["x"] = 2020.3,
},
["Range"] = 23.71,
["TT"] = {
["y"] = 9985.9,
["x"] = 2020.3,
},
},
{
["ExtraLine"] = "back to Teldrassil",
["CRange"] = 486,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
["Range"] = 18.34,
["TT"] = {
["y"] = 9984.2,
["x"] = 2030.4,
},
}, -- [23]
{
["CRange"] = 486,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985,
["x"] = 1965.2,
},
["Range"] = 12.4,
["TT"] = {
["y"] = 9985,
["x"] = 1965.2,
},
}, -- [24]
{
["PickUp"] = {
930, -- [1]
},
["TT"] = {
["y"] = 9250.5,
["x"] = 1643.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["Qpart"] = {
[486] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
["Range"] = 0.12,
["TT"] = {
["y"] = 9118.5,
["x"] = 1837.5,
},
}, -- [26]
{
["PickUp"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10664.7,
["x"] = 1863.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [27]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[7383] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
["Button"] = 5623,
["Range"] = 0.12,
["TT"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
}, -- [28]
{
["Qpart"] = {
[923] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.3,
["x"] = 1684.9,
},
["Range"] = 61.34,
["TT"] = {
["y"] = 10677.6,
["x"] = 1683.5,
},
}, -- [29]
{
["ExtraLine"] = "Blackmoss the Fetid drops a quest",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
["Range"] = 8.56,
["TT"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
}, -- [30]
{
["Qpart"] = {
[2518] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
["Range"] = 42.89,
["TT"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
}, -- [31]
{
["CRange"] = 2242,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 11003.1,
["x"] = 1902,
},
["Range"] = 13.81,
["TT"] = {
["y"] = 11003.1,
["x"] = 1902,
},
},
{
["ExtraLine"] = "Sap and pickpocket Sethir the Ancient",
["Qpart"] = {
[2242] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 11053.2,
["x"] = 1922.2,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 11053.2,
["x"] = 1922.2,
},
},
{
["PickUp"] = {
931, -- [1]
},
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [32]
{
["Qpart"] = {
[937] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Range"] = 97.1,
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
}, -- [33]
{
["Done"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [34]
{
["PickUp"] = {
940, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [35]
{
["ExtraLine"] = "back to Darnassus",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
["Range"] = 22.41,
["TT"] = {
["y"] = 9985.4,
["x"] = 1977.3,
},
}, -- [36]
{
["CRange"] = 923,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
["Range"] = 17.27,
["TT"] = {
["y"] = 9985.3,
["x"] = 2032.1,
},
}, -- [37]
{
["Done"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [38]
{
["PickUp"] = {
2498, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [39]
{
["Done"] = {
940, -- [1]
6341, -- [2]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [40]
{
["PickUp"] = {
952, -- [1]
},
["TT"] = {
["y"] = 10173.1,
["x"] = 2570.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [41]
{
["CRange"] = 2242,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 10123.1,
["x"] = 2591.8,
},
["Range"] = 5.9,
["TT"] = {
["y"] = 10123.1,
["x"] = 2591.8,
},
},
{
["ExtraLine"] = "Downstairs",
["Zone"] = "1657 (Darnassus)",
["Done"] = {
2242,
},
["TT"] = {
["y"] = 10083.9,
["x"] = 2547,
},
},
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
["Range"] = 15.14,
["TT"] = {
["y"] = 9904.3,
["x"] = 2530.5,
},
}, -- [42]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
["Range"] = 8.01,
["TT"] = {
["y"] = 9693.1,
["x"] = 2525.5,
},
}, -- [43]
{
["Done"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [44]
{
["PickUp"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9631.9,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [45]
{
["ExtraLine"] = "Offer Sacrifice",
["Qpart"] = {
[2520] = {
["1"] = "1",
},
},
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
["Button"] = 8155,
["Range"] = 0.1,
["TT"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
}, -- [46]
{
["ExtraLine"] = "upstairs",
["Done"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9632.1,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [47]
{
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.1,
},
["UseHS"] = 934,
["Zone"] = "1657 (Darnassus)",
}, -- [48]
{
["Done"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.8,
["x"] = 966.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [49]
{
["Done"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
935, -- [1]
},
["TT"] = {
["y"] = 9736.8,
["x"] = 956.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["Done"] = {
931, -- [1]
930, -- [2]
2498, -- [3]
},
["TT"] = {
["y"] = 9507.4,
["x"] = 713.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507,
["x"] = 715,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Qpart"] = {
[2499] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
}, -- [54]
{
["Done"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 713.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["Qpart"] = {
[4161] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
["Range"] = 70.71,
["TT"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
}, -- [56]
{
["Done"] = {
4161, -- [1]
},
["TT"] = {
["y"] = 9750.8,
["x"] = 905.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [57]
{
["ExtraLine"] = "use teleport",
["CRange"] = 6344,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 8786.3,
["x"] = 967.4,
},
["Range"] = 29.86,
["TT"] = {
["y"] = 9958.7,
["x"] = 2625.5,
},
}, -- [58]
{
["Done"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["PickUp"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["Done"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["UseFlightPath"] = 6342,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["Done"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [64]
{
["PickUp"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [65]
{
["UseFlightPath"] = 6343,
["Name"] = "Rut'theran Village, Teldrassil",
["TT"] = {
["y"] = 6343.8,
["x"] = 562.2,
},
}, -- [2]
{
["Done"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 8693.8,
["x"] = 950.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["UseFlightPath"] = 12486,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-12NightElf-Warrior"] = {
{
["PickUp"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10328.6,
["x"] = 826.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["PickUp"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10389.5,
["x"] = 764,
},
["Fillers"] = {
[456] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
}, -- [2]
{
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
458, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [3]
{
["PickUp"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297,
["x"] = 869.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [4]
{
["Qpart"] = {
[459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
["Fillers"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 42.7,
["TT"] = {
["y"] = 10276.4,
["x"] = 969.9,
},
}, -- [5]
{
["Qpart"] = {
[456] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
["Range"] = 74.81,
["TT"] = {
["y"] = 10449.3,
["x"] = 965.7,
},
}, -- [6]
{
["Done"] = {
459, -- [1]
},
["TT"] = {
["y"] = 10297.2,
["x"] = 870.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [7]
{
["Done"] = {
456, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [8]
{
["PickUp"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [9]
{
["ExtraLine"] = "Class Quest",
["TT"] = {
["y"] = 10327.7,
["x"] = 826.7,
},
["PickUp"] = {
3116, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [10]
{
["PickUp"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417.4,
["x"] = 870.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [11]
{
["PickUp"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10408.4,
["x"] = 714.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [12]
{
["CRange"] = 3116,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10400.4,
["x"] = 764.6,
},
["Range"] = 7.58,
["TT"] = {
["y"] = 10400.4,
["x"] = 764.6,
},
}, -- [13]
{
["CRange"] = 3116,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10471.2,
["x"] = 800.7,
},
["Range"] = 12.57,
["TT"] = {
["y"] = 10471.2,
["x"] = 800.7,
},
}, -- [14]
{
["Done"] = {
3116, -- [1]
},
["TT"] = {
["y"] = 10526.4,
["x"] = 778.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [15]
{
["ExtraLine"] = "Train abilitys and sell",
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 10413.1,
["x"] = 780.5,
},
}, -- [16]
{
["CRange"] = 4495,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
[916] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
["Range"] = 12.51,
["TT"] = {
["y"] = 10720.2,
["x"] = 978.1,
},
}, -- [17]
{
["Done"] = {
4495, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [18]
{
["PickUp"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10711.7,
["x"] = 1034.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [19]
{
["Qpart"] = {
[916] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
["Range"] = 41.46,
["TT"] = {
["y"] = 10742.4,
["x"] = 928.7,
},
}, -- [20]
{
["Qpart"] = {
[457] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
["Range"] = 81.95,
["TT"] = {
["y"] = 10622.5,
["x"] = 742.4,
},
}, -- [21]
{
["Done"] = {
3519, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [22]
{
["PickUp"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10406.5,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [23]
{
["Done"] = {
457, -- [1]
},
["TT"] = {
["y"] = 10328.1,
["x"] = 826.1,
},
["Zone"] = "141 (Teldrassil)",
}, -- [24]
{
["Done"] = {
916, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [25]
{
["PickUp"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417,
["x"] = 871.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [26]
{
["ExtraLine"] = "sell and see trainer if you need",
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
["Range"] = 54.57,
["TT"] = {
["y"] = 10386.8,
["x"] = 971.7,
},
}, -- [27]
{
["Qpart"] = {
[3521] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
["Range"] = 61.25,
["TT"] = {
["y"] = 10369.3,
["x"] = 1025.6,
},
}, -- [28]
{
["Qpart"] = {
[3521] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
["Range"] = 89.15,
["TT"] = {
["y"] = 10561.7,
["x"] = 885.1,
},
}, -- [29]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Range"] = 6.78,
["TT"] = {
["y"] = 10829.9,
["x"] = 938.9,
},
}, -- [30]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
["Range"] = 13.89,
["TT"] = {
["y"] = 10844.3,
["x"] = 919.9,
},
}, -- [31]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
["Range"] = 11.35,
["TT"] = {
["y"] = 10903.8,
["x"] = 922.3,
},
}, -- [32]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
["Range"] = 8.1,
["TT"] = {
["y"] = 10971.9,
["x"] = 976.5,
},
}, -- [33]
{
["CRange"] = 917,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[3521] = {
["3"] = "3",
},
},
["Trigger"] = {
["y"] = 10986,
["x"] = 950.6,
},
["Range"] = 15.1,
["TT"] = {
["y"] = 10986,
["x"] = 950.6,
},
}, -- [34]
{
["Qpart"] = {
[917] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
["Range"] = 0.13,
["TT"] = {
["y"] = 10933.5,
["x"] = 924.2,
},
}, -- [35]
{
["Qpart"] = {
[3521] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["Range"] = 57.49,
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
}, -- [36]
{
["TT"] = {
["y"] = 10935.4,
["x"] = 927.7,
},
["UseHS"] = 917,
["Zone"] = "141 (Teldrassil)",
}, -- [37]
{
["Done"] = {
3521, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [38]
{
["PickUp"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10407.1,
["x"] = 714.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [39]
{
["Done"] = {
917, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [40]
{
["PickUp"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10417.6,
["x"] = 871.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [41]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 920,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
["Range"] = 13.2,
["TT"] = {
["y"] = 10463.6,
["x"] = 856.9,
},
}, -- [42]
{
["ExtraLine"] = "up to top hut",
["Done"] = {
920, -- [1]
},
["TT"] = {
["y"] = 10492.3,
["x"] = 807.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [43]
{
["PickUp"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.8,
["x"] = 806.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [44]
{
["CRange"] = 3522,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
["Range"] = 19.16,
["TT"] = {
["y"] = 10715.9,
["x"] = 963.1,
},
}, -- [45]
{
["Done"] = {
3522, -- [1]
},
["TT"] = {
["y"] = 10711,
["x"] = 1034.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [46]
{
["ExtraLine"] = "Fill Phial in the moonwell",
["Qpart"] = {
[921] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
["Button"] = 5185,
["Range"] = 0.1,
["TT"] = {
["y"] = 10709.5,
["x"] = 762.8,
},
}, -- [47]
{
["ExtraLine"] = "Die and spirit rez or run",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
["Range"] = 11.45,
["TT"] = {
["y"] = 10419.5,
["x"] = 870.6,
},
}, -- [48]
{
["ExtraLine"] = "Up ramp",
["CRange"] = 921,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
["Range"] = 16.31,
["TT"] = {
["y"] = 10493.5,
["x"] = 854.8,
},
}, -- [49]
{
["ExtraLine"] = "Handin in top hut",
["Done"] = {
921, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [50]
{
["PickUp"] = {
928, -- [1]
},
["TT"] = {
["y"] = 10492.1,
["x"] = 807.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [51]
{
["PickUp"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 10214.1,
["x"] = 700.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9926.1,
["x"] = 736.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
["level"] = 6,
["xp"] = 1,
["TT"] = {
["y"] = 9957.1,
["x"] = 683.2,
},
}, -- [54]
{
["PickUp"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9871.5,
["x"] = 960.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["PickUp"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9887,
["x"] = 966.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [56]
{
["ExtraLine"] = "Train First Aid",
["CRange"] = 475,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9903,
["x"] = 999.5,
},
["Range"] = 3.75,
["TT"] = {
["y"] = 9903,
["x"] = 999.5,
},
}, -- [57]
{
["ExtraLine"] = "Go up top of the tower",
["TT"] = {
["y"] = 9898.8,
["x"] = 986.2,
},
["PickUp"] = {
2438, -- [1]
932, -- [2]
},
["Zone"] = "141 (Teldrassil)",
}, -- [58]
{
["ExtraLine"] = "Repair and sell",
["Done"] = {
2159, -- [1]
},
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["SetHS"] = 2438,
["TT"] = {
["y"] = 9802.4,
["x"] = 981.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [60]
{
["ExtraLine"] = "Train lvl6 abilitys",
["Done"] = {
928, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [61]
{
["PickUp"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9737.5,
["x"] = 956.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [62]
{
["Done"] = {
997, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [63]
{
["PickUp"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [64]
{
["Qpart"] = {
[919] = {
["1"] = "1",
},
[918] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
["Range"] = 148.41,
["TT"] = {
["y"] = 9507.1,
["x"] = 714.2,
},
}, -- [65]
{
["Done"] = {
919, -- [1]
918, -- [2]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [66]
{
["PickUp"] = {
922, -- [1]
},
["TT"] = {
["y"] = 9506.5,
["x"] = 712.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 26.24,
["TT"] = {
["y"] = 9690.2,
["x"] = 761.9,
},
}, -- [68]
{
["ExtraLine"] = "Fill Phial at moonwell",
["Qpart"] = {
[929] = {
["1"] = "1",
},
},
["Button"] = 5619,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
["Fillers"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 0.11,
["TT"] = {
["y"] = 9858.6,
["x"] = 587.8,
},
}, -- [69]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
475, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [70]
{
["PickUp"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9844.2,
["x"] = 441.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [71]
{
["ExtraLine"] = "Loot Dresser in the building",
["Qpart"] = {
[2438] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9807.8,
["x"] = 352,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9807.8,
["x"] = 352,
},
}, -- [72]
{
["Qpart"] = {
[488] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
["Range"] = 237.21,
["TT"] = {
["y"] = 9751.3,
["x"] = 569.9,
},
}, -- [73]
{
["Done"] = {
488, -- [1]
},
["TT"] = {
["y"] = 9925.9,
["x"] = 736,
},
["Zone"] = "141 (Teldrassil)",
}, -- [74]
{
["PickUp"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9872.8,
["x"] = 957.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [75]
{
["Done"] = {
476, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [76]
{
["PickUp"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.5,
["x"] = 965.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [77]
{
["ExtraLine"] = "Sell",
["CRange"] = 929,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
["Range"] = 28.99,
["TT"] = {
["y"] = 9785.7,
["x"] = 949.7,
},
}, -- [78]
{
["Done"] = {
929, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [79]
{
["PickUp"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.4,
["x"] = 956.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [80]
{
["ExtraLine"] = "Train cooking and accept quest",
["TT"] = {
["y"] = 9751.3,
["x"] = 906,
},
["PickUp"] = {
4161, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [81]
{
["ExtraLine"] = "Loot Fel Cones around the trees",
["Qpart"] = {
[489] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9779,
["x"] = 784.3,
},
["Fillers"] = {
[4161] = {
["1"] = "1",
},
},
["Range"] = 32.91,
["TT"] = {
["y"] = 9779,
["x"] = 784.3,
},
}, -- [82]
{
["Done"] = {
489, -- [1]
},
["TT"] = {
["y"] = 9925.6,
["x"] = 737,
},
["Zone"] = "141 (Teldrassil)",
}, -- [83]
{
["ExtraLine"] = "Top of the tower",
["Done"] = {
2438, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [84]
{
["PickUp"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.7,
["x"] = 985.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [85]
{
["ExtraLine"] = "Click Necklace after you loot it",
["Qpart"] = {
[2459] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
["Fillers"] = {
[2459] = {
["1"] = "1",
},
},
["Range"] = 0.17,
["TT"] = {
["y"] = 10018.9,
["x"] = 281.7,
},
}, -- [86]
{
["Qpart"] = {
[2459] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10020.7,
["x"] = 283,
},
["Range"] = 40.14,
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
}, -- [87]
{
["TT"] = {
["y"] = 10020.7,
["x"] = 283,
},
["UseHS"] = 2459,
["Zone"] = "141 (Teldrassil)",
}, -- [88]
{
["ExtraLine"] = "Top of the tree",
["Done"] = {
2459, -- [1]
},
["TT"] = {
["y"] = 9898.2,
["x"] = 985.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [89]
{
["CRange"] = 933,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
["Range"] = 17.17,
["TT"] = {
["y"] = 9846.2,
["x"] = 1009.9,
},
}, -- [90]
{
["PickUp"] = {
487, -- [1]
},
["TT"] = {
["y"] = 10107,
["x"] = 1369.1,
},
["ExtraLine"] = "Follow the road untill you get the quest",
["Zone"] = "141 (Teldrassil)",
}, -- [91]
{
["Qpart"] = {
[487] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10029.5,
["x"] = 1415,
},
["Range"] = 58.65,
["TT"] = {
["y"] = 10029.5,
["x"] = 1415,
},
}, -- [92]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
["Range"] = 12.45,
["TT"] = {
["y"] = 9865.9,
["x"] = 1557.2,
},
}, -- [93]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
["Range"] = 9.11,
["TT"] = {
["y"] = 9795.4,
["x"] = 1596.6,
},
}, -- [94]
{
["ExtraLine"] = "Over the bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
["Range"] = 8.87,
["TT"] = {
["y"] = 9780.9,
["x"] = 1550.9,
},
}, -- [95]
{
["Qpart"] = {
[483] = {
["4"] = "4",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9772.7,
["x"] = 1554,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9772.7,
["x"] = 1554,
},
}, -- [96]
{
["ExtraLine"] = "back over bridge and take other",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
["Range"] = 9.69,
["TT"] = {
["y"] = 9795.9,
["x"] = 1597.7,
},
}, -- [97]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1580.5,
},
["Range"] = 10.77,
["TT"] = {
["y"] = 9754,
["x"] = 1580.5,
},
}, -- [98]
{
["Qpart"] = {
[483] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 9753.9,
["x"] = 1588.7,
},
}, -- [99]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
["Range"] = 7.78,
["TT"] = {
["y"] = 9777.5,
["x"] = 1599.6,
},
}, -- [100]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9754,
["x"] = 1632.8,
},
["Range"] = 9.92,
["TT"] = {
["y"] = 9754,
["x"] = 1632.8,
},
}, -- [101]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
["Range"] = 6.16,
["TT"] = {
["y"] = 9726.9,
["x"] = 1605.1,
},
}, -- [102]
{
["ExtraLine"] = "Over bridge",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
["Range"] = 6.8,
["TT"] = {
["y"] = 9750.4,
["x"] = 1531.8,
},
}, -- [103]
{
["PickUp"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1526.2,
},
["Zone"] = "141 (Teldrassil)",
}, -- [104]
{
["ExtraLine"] = "Jump down",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
["Range"] = 7.12,
["TT"] = {
["y"] = 9721.4,
["x"] = 1553.7,
},
}, -- [105]
{
["Qpart"] = {
[483] = {
["3"] = "3",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9712.1,
["x"] = 1538.6,
},
}, -- [106]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
["Range"] = 8.64,
["TT"] = {
["y"] = 9778.2,
["x"] = 1557.5,
},
}, -- [107]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
["Range"] = 6.81,
["TT"] = {
["y"] = 9796.3,
["x"] = 1545.6,
},
}, -- [108]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9791.8,
["x"] = 1514,
},
["Range"] = 7.44,
["TT"] = {
["y"] = 9791.8,
["x"] = 1514,
},
}, -- [109]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 5.05,
["TT"] = {
["y"] = 9823.7,
["x"] = 1493.1,
},
}, -- [110]
{
["ExtraLine"] = "Go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 4.21,
["TT"] = {
["y"] = 9837.7,
["x"] = 1513.1,
},
}, -- [111]
{
["ExtraLine"] = "go up ramp",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 7.06,
["TT"] = {
["y"] = 9859.7,
["x"] = 1504.4,
},
}, -- [112]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 10.5,
["TT"] = {
["y"] = 9850.4,
["x"] = 1464.2,
},
}, -- [113]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9860,
["x"] = 1459.5,
},
["Range"] = 6.04,
["TT"] = {
["y"] = 9860,
["x"] = 1459.5,
},
}, -- [114]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
["Range"] = 8.54,
["TT"] = {
["y"] = 9894.3,
["x"] = 1480.8,
},
}, -- [115]
{
["Qpart"] = {
[483] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9882,
["x"] = 1489.7,
},
["Fillers"] = {
[2541] = {
["1"] = "1",
},
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9882,
["x"] = 1489.7,
},
}, -- [116]
{
["ExtraLine"] = "Kill shamans for the charm",
["Qpart"] = {
[2541] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
["Range"] = 35.09,
["TT"] = {
["y"] = 9881.3,
["x"] = 1488.9,
},
}, -- [117]
{
["ExtraLine"] = "go back to Oben",
["Done"] = {
2541, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [118]
{
["PickUp"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.2,
["x"] = 1526.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [119]
{
["ExtraLine"] = "He patrols around the circle",
["Qpart"] = {
[2561] = {
["2"] = "2",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
["Range"] = 0.09,
["TT"] = {
["y"] = 9853.3,
["x"] = 1498.9,
},
}, -- [120]
{
["ExtraLine"] = "Use Voodoo Charm on his corpse",
["Qpart"] = {
[2561] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
["Button"] = 8149,
["Range"] = 0.17,
["TT"] = {
["y"] = 9877.6,
["x"] = 1497.6,
},
}, -- [121]
{
["Done"] = {
2561, -- [1]
},
["TT"] = {
["y"] = 9741.8,
["x"] = 1525.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [122]
{
["ExtraLine"] = "Leave the Den",
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
["Range"] = 14.27,
["TT"] = {
["y"] = 9869.9,
["x"] = 1553.2,
},
}, -- [123]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
["Range"] = 21.08,
["TT"] = {
["y"] = 9982.2,
["x"] = 1596.5,
},
}, -- [124]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
["Range"] = 17.2,
["TT"] = {
["y"] = 10001.3,
["x"] = 1758.7,
},
}, -- [125]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[933] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
["Button"] = 5621,
["Range"] = 0.15,
["TT"] = {
["y"] = 9554.9,
["x"] = 1655.2,
},
}, -- [126]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
["Range"] = 20.4,
["TT"] = {
["y"] = 9436.6,
["x"] = 1685.1,
},
}, -- [127]
{
["ExtraLine"] = "Click Plant",
["TT"] = {
["y"] = 9248.7,
["x"] = 1643.4,
},
["PickUp"] = {
930, -- [1]
},
["Zone"] = "141 (Teldrassil)",
}, -- [128]
{
["CRange"] = 483,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9483,
["x"] = 1305.6,
},
["Range"] = 23.15,
["TT"] = {
["y"] = 9483,
["x"] = 1305.6,
},
}, -- [129]
{
["TT"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["xp"] = 5500,
["Trigger"] = {
["y"] = 9590.8,
["x"] = 1255.2,
},
["level"] = 9,
["Range"] = 64,
["Grind"] = 11951,
}, -- [130]
{
["ExtraLine"] = "Find Amara along the road again",
["Done"] = {
487, -- [1]
},
["TT"] = {
["y"] = 9914,
["x"] = 1196.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [131]
{
["Done"] = {
483, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [132]
{
["PickUp"] = {
486, -- [1]
},
["TT"] = {
["y"] = 9886.7,
["x"] = 965.8,
},
["Zone"] = "141 (Teldrassil)",
}, -- [133]
{
["ExtraLine"] = "Sell on the way",
["Done"] = {
933, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [134]
{
["PickUp"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.9,
["x"] = 956,
},
["Zone"] = "141 (Teldrassil)",
}, -- [135]
{
["TT"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = 9741.4,
["x"] = 965.7,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [136]
{
["PickUp"] = {
1684, -- [1]
},
["TT"] = {
["y"] = 9821.5,
["x"] = 952,
},
["Zone"] = "141 (Teldrassil)",
}, -- [1]
{
["ExtraLine"] = "go to Darnassus",
["CRange"] = 1684,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9984.6,
["x"] = 1976.1,
},
["Range"] = 15.32,
["TT"] = {
["y"] = 9984.6,
["x"] = 1976.1,
},
}, -- [2]
{
["CRange"] = 1684,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9986,
["x"] = 1968.4,
},
["Range"] = 10.64,
["TT"] = {
["y"] = 9986,
["x"] = 1968.4,
},
}, -- [3]
{
["PickUp"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 9917.3,
["x"] = 2189,
},
["Zone"] = "1657 (Darnassus)",
}, -- [4]
{
["CRange"] = 1684,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9950.3,
["x"] = 2274.7,
},
["Range"] = 10.86,
["TT"] = {
["y"] = 9950.3,
["x"] = 2274.7,
},
}, -- [5]
{
["ExtraLine"] = "Weapon Master",
["CRange"] = 1684,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9908.7,
["x"] = 2328.9,
},
["Range"] = 5.25,
["TT"] = {
["y"] = 9908.7,
["x"] = 2328.9,
},
}, -- [6]
{
["Done"] = {
1684, -- [1]
},
["TT"] = {
["y"] = 9993.2,
["x"] = 2332.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [7]
{
["PickUp"] = {
1683, -- [1]
},
["TT"] = {
["y"] = 9993.2,
["x"] = 2332.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [8]
{
["Done"] = {
922, -- [1]
},
["TT"] = {
["y"] = 10085.6,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [9]
{
["PickUp"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.6,
["x"] = 2534.2,
},
["Zone"] = "1657 (Darnassus)",
}, -- [10]
{
["PickUp"] = {
2519, -- [1]
},
["TT"] = {
["y"] = 9914.7,
["x"] = 2631.9,
},
["Zone"] = "1657 (Darnassus)",
}, -- [11]
{
["CRange"] = 2519,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9904.5,
["x"] = 2534.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = 9904.5,
["x"] = 2534.3,
},
}, -- [12]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
2519, -- [1]
},
["TT"] = {
["y"] = 9632,
["x"] = 2550.3,
},
["Zone"] = "1657 (Darnassus)",
}, -- [13]
{
["PickUp"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9632,
["x"] = 2550.3,
},
["Zone"] = "1657 (Darnassus)",
}, -- [14]
{
["CRange"] = 1683,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9703.4,
["x"] = 2526,
},
["Range"] = 5.73,
["TT"] = {
["y"] = 9703.4,
["x"] = 2526,
},
}, -- [15]
{
["CRange"] = 1683,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9981.7,
["x"] = 2034.5,
},
["Range"] = 22.4,
["TT"] = {
["y"] = 9981.7,
["x"] = 2034.5,
},
}, -- [16]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9986.7,
["x"] = 1969.6,
},
["Range"] = 13.05,
["TT"] = {
["y"] = 9986.7,
["x"] = 1969.6,
},
}, -- [17]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9508.6,
["x"] = 1616.8,
},
["Range"] = 35.73,
["TT"] = {
["y"] = 9508.6,
["x"] = 1616.8,
},
}, -- [18]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9437.7,
["x"] = 1514.2,
},
["Range"] = 27.54,
["TT"] = {
["y"] = 9437.7,
["x"] = 1514.2,
},
}, -- [19]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9439.4,
["x"] = 1349.7,
},
["Range"] = 27.5,
["TT"] = {
["y"] = 9439.4,
["x"] = 1349.7,
},
}, -- [20]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9617.7,
["x"] = 1245.9,
},
["Range"] = 24.22,
["TT"] = {
["y"] = 9617.7,
["x"] = 1245.9,
},
}, -- [21]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9679.7,
["x"] = 1226.6,
},
["Range"] = 21.09,
["TT"] = {
["y"] = 9679.7,
["x"] = 1226.6,
},
}, -- [22]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9735.9,
["x"] = 1336.3,
},
["Range"] = 18.2,
["TT"] = {
["y"] = 9735.9,
["x"] = 1336.3,
},
}, -- [23]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9698.9,
["x"] = 1333.3,
},
["Range"] = 9.99,
["TT"] = {
["y"] = 9698.9,
["x"] = 1333.3,
},
}, -- [24]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9649.9,
["x"] = 1302.8,
},
["Range"] = 9.23,
["TT"] = {
["y"] = 9649.9,
["x"] = 1302.8,
},
}, -- [25]
{
["CRange"] = 1683,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9624.3,
["x"] = 1344.4,
},
["Range"] = 10.57,
["TT"] = {
["y"] = 9624.3,
["x"] = 1344.4,
},
}, -- [26]
{
["Qpart"] = {
[1683] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9674.9,
["x"] = 1410.3,
},
["Range"] = 5,
["TT"] = {
["y"] = 9674.9,
["x"] = 1410.3,
},
}, -- [27]
{
["PickUp"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10664.8,
["x"] = 1863.5,
},
["Zone"] = "141 (Teldrassil)",
}, -- [28]
{
["ExtraLine"] = "Fill Phial",
["Qpart"] = {
[7383] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
["Button"] = 5623,
["Range"] = 0.12,
["TT"] = {
["y"] = 10675.9,
["x"] = 1858.1,
},
}, -- [29]
{
["Qpart"] = {
[923] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10675.3,
["x"] = 1684.9,
},
["Range"] = 61.34,
["TT"] = {
["y"] = 10677.6,
["x"] = 1683.5,
},
}, -- [30]
{
["ExtraLine"] = "Blackmoss the Fetid drops a quest",
["CRange"] = 923,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
["Range"] = 8.56,
["TT"] = {
["y"] = 10809.6,
["x"] = 1578.9,
},
}, -- [31]
{
["Qpart"] = {
[2518] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
["Range"] = 42.89,
["TT"] = {
["y"] = 10977.5,
["x"] = 1365.2,
},
}, -- [32]
{
["PickUp"] = {
931, -- [1]
},
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Zone"] = "141 (Teldrassil)",
}, -- [33]
{
["Qpart"] = {
[937] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
["Range"] = 97.1,
["TT"] = {
["y"] = 10855.7,
["x"] = 2049.4,
},
}, -- [34]
{
["Done"] = {
937, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [35]
{
["PickUp"] = {
940, -- [1]
},
["TT"] = {
["y"] = 10665.3,
["x"] = 1864,
},
["Zone"] = "141 (Teldrassil)",
}, -- [36]
{
["CRange"] = 940,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.1,
["x"] = 1967.8,
},
["Range"] = 23.67,
["TT"] = {
["y"] = 9985.1,
["x"] = 1967.8,
},
}, -- [37]
{
["CRange"] = 940,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9983.4,
["x"] = 2028.8,
},
["Range"] = 18.94,
["TT"] = {
["y"] = 9983.4,
["x"] = 2028.8,
},
}, -- [38]
{
["Done"] = {
1683, -- [1]
},
["TT"] = {
["y"] = 9994.3,
["x"] = 2331.7,
},
["Zone"] = "1657 (Darnassus)",
}, -- [39]
{
["PickUp"] = {
1686, -- [1]
},
["TT"] = {
["y"] = 9994.3,
["x"] = 2331.7,
},
["Zone"] = "1657 (Darnassus)",
}, -- [40]
{
["Done"] = {
923, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [41]
{
["PickUp"] = {
2498, -- [1]
},
["TT"] = {
["y"] = 10085.7,
["x"] = 2534.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [42]
{
["ExtraLine"] = "Up top in building",
["Done"] = {
940, -- [1]
},
["TT"] = {
["y"] = 10173.7,
["x"] = 2570.5,
},
["Zone"] = "1657 (Darnassus)",
}, -- [43]
{
["PickUp"] = {
952, -- [1]
},
["TT"] = {
["y"] = 10173.7,
["x"] = 2570.5,
},
["Zone"] = "1657 (Darnassus)",
}, -- [44]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9903.9,
["x"] = 2531.6,
},
["Range"] = 11.17,
["TT"] = {
["y"] = 9903.9,
["x"] = 2531.6,
},
}, -- [45]
{
["CRange"] = 2518,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9696.7,
["x"] = 2526.5,
},
["Range"] = 12.82,
["TT"] = {
["y"] = 9696.7,
["x"] = 2526.5,
},
}, -- [46]
{
["ExtraLine"] = "upstairs",
["Done"] = {
2518, -- [1]
},
["TT"] = {
["y"] = 9632.1,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [47]
{
["PickUp"] = {
952, -- [1]
},
["TT"] = {
["y"] = 9632.1,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [48]
{
["ExtraLine"] = "Offer Sacrifice",
["Qpart"] = {
[2520] = {
["1"] = "1",
},
},
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
["Button"] = 8155,
["Range"] = 0.1,
["TT"] = {
["y"] = 9642.2,
["x"] = 2520.5,
},
}, -- [49]
{
["ExtraLine"] = "upstairs",
["Done"] = {
2520, -- [1]
},
["TT"] = {
["y"] = 9632.1,
["x"] = 2550.1,
},
["Zone"] = "1657 (Darnassus)",
}, -- [50]
{
["TT"] = {
["y"] = 9631.8,
["x"] = 2550.1,
},
["UseHS"] = 934,
["Zone"] = "1657 (Darnassus)",
}, -- [51]
{
["ExtraLine"] = "Sell on the way",
["Done"] = {
7383, -- [1]
},
["TT"] = {
["y"] = 9736.3,
["x"] = 955.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [52]
{
["PickUp"] = {
935, -- [1]
},
["TT"] = {
["y"] = 9736.3,
["x"] = 955.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [53]
{
["Done"] = {
931, -- [1]
930, -- [2]
2498, -- [3]
},
["TT"] = {
["y"] = 9506.8,
["x"] = 713.6,
},
["Zone"] = "141 (Teldrassil)",
}, -- [54]
{
["PickUp"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 713.7,
},
["Zone"] = "141 (Teldrassil)",
}, -- [55]
{
["Qpart"] = {
[2499] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 9292.6,
["x"] = 1102.6,
},
}, -- [56]
{
["Done"] = {
2499, -- [1]
},
["TT"] = {
["y"] = 9507.1,
["x"] = 713.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [57]
{
["Qpart"] = {
[4161] = {
["1"] = "1",
},
},
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
["Range"] = 70.71,
["TT"] = {
["y"] = 9818.9,
["x"] = 768.4,
},
}, -- [58]
{
["Done"] = {
4161, -- [1]
},
["TT"] = {
["y"] = 9750.8,
["x"] = 905.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [59]
{
["ExtraLine"] = "Back to Darnassus",
["CRange"] = 935,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 9985.8,
["x"] = 1969.2,
},
["Range"] = 14.48,
["TT"] = {
["y"] = 9985.8,
["x"] = 1969.2,
},
}, -- [60]
{
["ExtraLine"] = "visit trainer",
["CRange"] = 935,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9940.4,
["x"] = 2285.4,
},
["Range"] = 6.94,
["TT"] = {
["y"] = 9940.4,
["x"] = 2285.4,
},
}, -- [61]
{
["ExtraLine"] = "Top of the building",
["Done"] = {
935, -- [1]
},
["TT"] = {
["y"] = 10173.2,
["x"] = 2569.5,
},
["Zone"] = "1657 (Darnassus)",
}, -- [62]
{
["ExtraLine"] = "use teleport",
["CRange"] = 6344,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 8786.3,
["x"] = 967.4,
},
["Range"] = 29.86,
["TT"] = {
["y"] = 9958.7,
["x"] = 2625.5,
},
}, -- [63]
{
["Done"] = {
6344, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [64]
{
["PickUp"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8694.9,
["x"] = 949.9,
},
["Zone"] = "141 (Teldrassil)",
}, -- [65]
{
["Done"] = {
6341, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [66]
{
["PickUp"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 8640.5,
["x"] = 841.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [67]
{
["UseFlightPath"] = 6342,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["Done"] = {
6342, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [69]
{
["PickUp"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 6398.3,
["x"] = 533.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [70]
{
["Qpart"] = {
[1686] = {
["2"] = "2",
},
},
["Zone"] = "148 (Darkshore)",
["Fillers"] = {
[1686] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 6374.1,
["x"] = 869.7,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 6374.1,
["x"] = 869.7,
},
}, -- [71]
{
["ExtraLine"] = "Loot boxes",
["Qpart"] = {
[1686] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6374.1,
["x"] = 869.7,
},
["Range"] = 81.16,
["TT"] = {
["y"] = 6374.1,
["x"] = 869.7,
},
}, -- [72]
{
["UseFlightPath"] = 6343,
["Name"] = "Rut'theran Village, Teldrassil",
["TT"] = {
["y"] = 6343.8,
["x"] = 562.2,
},
}, -- [2]
{
["Done"] = {
6343, -- [1]
},
["TT"] = {
["y"] = 8693.8,
["x"] = 950.3,
},
["Zone"] = "141 (Teldrassil)",
}, -- [74]
{
["CRange"] = 1686,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9945.1,
["x"] = 2616.8,
},
["Range"] = 40.41,
["TT"] = {
["y"] = 8786.9,
["x"] = 965.4,
},
}, -- [75]
{
["Done"] = {
1686, -- [1]
},
["TT"] = {
["y"] = 9993.6,
["x"] = 2331.6,
},
["Zone"] = "1657 (Darnassus)",
}, -- [76]
{
["PickUp"] = {
1692, -- [1]
},
["TT"] = {
["y"] = 9993.6,
["x"] = 2331.6,
},
["Zone"] = "1657 (Darnassus)",
}, -- [77]
{
["Done"] = {
1692, -- [1]
},
["TT"] = {
["y"] = 9917.8,
["x"] = 2310.3,
},
["Zone"] = "1657 (Darnassus)",
}, -- [78]
{
["ExtraLine"] = "wait for quest to pop",
["CRange"] = 1693,
["Zone"] = "1657 (Darnassus)",
["Trigger"] = {
["y"] = 9908.1,
["x"] = 2317.4,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 9917.9,
["x"] = 2309.7,
},
}, -- [79]
{
["CRange"] = 12486,
["Zone"] = "141 (Teldrassil)",
["Trigger"] = {
["y"] = 8777.7,
["x"] = 965.2,
},
["Range"] = 43.9,
["TT"] = {
["y"] = 9944.5,
["x"] = 2616.5,
},
}, -- [80]
{
["UseFlightPath"] = 12486,
["Name"] = "Auberdine, Darkshore",
["TT"] = {
["y"] = 8641.2,
["x"] = 841.9,
},
}, -- [1]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
---------------------------------- NightElf Ends ---------------------
---------------------------------- Dwarf and Gnome Starts ---------------------
["1-6DwarfGnome-Hunter"] = {
{
["PickUp"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
},
{
["Qpart"] = {
[179] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 333.7,
["y"] = -6333.5,
},
["Range"] = 66.08,
["TT"] = {
["x"] = 333.8,
["y"] = -6333,
},
},
{
["Done"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["PickUp"] = {
233,
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["PickUp"] = {
1234567890,
},
["PickUpClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6214.9,
["x"] = 328.8,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["PickUp"] = {
170,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["ExtraLine"] = "You might want to sell beforehand!",
["Qpart"] = {
[170] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
["Fillers"] = {
[170] = {
["2"] = "2",
},
},
["Range"] = 58.07,
["TT"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
}, -- [5]
{
["Qpart"] = {
[170] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
["Range"] = 28.22,
["TT"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
}, -- [6]
{
["Done"] = {
170,
},
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
["Range"] = 10.75,
["TT"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
}, -- [8]
{
["ExtraLine"] = "Train skills and sell",
["Done"] = {
1234567890,
},
["DoneClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6084.5,
["x"] = 382.5,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6084.5,
["x"] = 382.5,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6120.3,
["x"] = 382.6,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6091.5,
["x"] = 365.7,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6093.4,
["x"] = 405.3,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6093.4,
["x"] = 405.3,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6056.5,
["x"] = 394,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6055.9,
["x"] = 388.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6048.8,
["x"] = 390.3,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["ExtraLine"] = "Train skills and sell",
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["PickUp"] = {
3361,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["ExtraLine"] = "Train skills and sell",
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
["Range"] = 10.68,
["TT"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
}, -- [10]
{
["Done"] = {
233,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["PickUp"] = {
183,
234,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[183] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
["Range"] = 40.09,
["TT"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
}, -- [13]
{
["Done"] = {
183,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [14]
{
["Done"] = {
234,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["PickUp"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [16]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6370.4,
["x"] = 572.4,
},
}, -- [1]
{
["PickUp"] = {
3364,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [17]
{
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.77,
["TT"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
}, -- [18]
{
["ExtraLine"] = "Die now (shortcut) and revive at spirit healer",
["CRange"] = 3364,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
["Range"] = 3.94,
["TT"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
}, -- [19]
{
["Done"] = {
3364,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["PickUp"] = {
3365,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [21]
{
["ExtraLine"] = "Sell on the way out/learn skills",
["CRange"] = 3361,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
["Range"] = 12.41,
["TT"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
}, -- [22]
{
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
[3361] = {
["3"] = "3",
},
},
["Range"] = 3.01,
["TT"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
}, -- [23]
{
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 505.3,
["y"] = -6480,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.31,
["TT"] = {
["x"] = 505.3,
["y"] = -6480,
},
}, -- [24]
{
["Qpart"] = {
[182] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
["Range"] = 55.76,
["TT"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
}, -- [25]
{
["Done"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["PickUp"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [27]
{
["Done"] = {
3365,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [28]
{
["Trigger"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
["Range"] = 15.73,
["CRange"] = 218,
["TT"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
["Range"] = 11.81,
["CRange"] = 218,
["TT"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
}, -- [4]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
["Range"] = 8.7,
["TT"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
}, -- [29]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
["Range"] = 7.84,
["TT"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
}, -- [30]
{
["Qpart"] = {
[218] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
["Range"] = 0.14,
["TT"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
}, -- [31]
{
["Done"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["PickUp"] = {
282,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["Trigger"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
["Range"] = 15.56,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
}, -- [5]
{
["Done"] = {
3361,
},
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["ExtraLine"] = "Sell on your way out",
["CRange"] = 282,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
["Range"] = 9.94,
["TT"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
}, -- [35]
{
["Done"] = {
282,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [36]
{
["PickUp"] = {
420,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [37]
{
["PickUp"] = {
2160,
},
["TT"] = {
["x"] = 135,
["y"] = -6248.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
["Range"] = 9.92,
["TT"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
}, -- [1]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
["Range"] = 9.95,
["TT"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["Done"] = {
420, -- [1]
},
["TT"] = {
["y"] = -5644.4,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["UpdMapID"] = 1,
},
},
["6-12DwarfGnome-Hunter"] = {
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["ExtraLine"] = "Get First Aid / train abilitys",
["SetHS"] = 384,
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["PickUp"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5574.5,
["x"] = -464.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [8]
{
["PickUp"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.1,
["x"] = -632.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5472.6,
["x"] = -641.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["PickUp"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -5500.3,
["x"] = -665,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["Done"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5489,
["x"] = -681.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[5541] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
}, -- [13]
{
["Qpart"] = {
[313] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5645.9,
["x"] = -285.7,
},
["Range"] = 10,
["TT"] = {
["y"] = -5649.3,
["x"] = -283.3,
},
}, -- [14]
{
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Done"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -6015.4,
["x"] = -201.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["Qpart"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["Range"] = 91.12,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [16]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["level"] = 6,
["xp"] = 3000,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [17]
{
["ExtraLine"] = "Buy Rhapsody Malt off Innkeeper",
["Qpart"] = {
[384] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
}, -- [18]
{
["Done"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.1,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [19]
{
["PickUp"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5644.5,
["x"] = -499.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5470,
["x"] = -464.6,
},
["Range"] = 5.01,
["TT"] = {
["y"] = -5470,
["x"] = -464.6,
},
}, -- [21]
{
["PickUp"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.8,
["x"] = -455.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [22]
{
["Done"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [23]
{
["PickUp"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [24]
{
["Done"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5473.2,
["x"] = -641.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [25]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5625,
["x"] = -465.7,
},
["Range"] = 24.92,
["TT"] = {
["y"] = -5625,
["x"] = -465.7,
},
}, -- [26]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
["Range"] = 34.54,
["TT"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
}, -- [27]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
["Range"] = 21.06,
["TT"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
}, -- [28]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
["Range"] = 6.79,
["TT"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
}, -- [29]
{
["PickUp"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5571.4,
["x"] = 97.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [30]
{
["ExtraLine"] = "Let yeti patrol out before you loot chest",
["Qpart"] = {
[312] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
}, -- [31]
{
["Done"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5572.4,
["x"] = 96.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["Done"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["PickUp"] = {
319, -- [1]
315, -- [2]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
310, -- [1]
},
["TT"] = {
["y"] = -5373.1,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [35]
{
["CRange"] = 315,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
["Range"] = 28.93,
["TT"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
}, -- [36]
{
["Qpart"] = {
[315] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
["Range"] = 59.63,
["TT"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
}, -- [37]
{
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
315, -- [1]
},
["TT"] = {
["y"] = -5379.3,
["x"] = 314.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["Grind"] = 11951,
["Range"] = 81.44,
["Trigger"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
["level"] = 8,
["xp"] = 1,
["TT"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
}, -- [39]
{
["PickUp"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [40]
{
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["UseHS"] = 413,
["Zone"] = "1 (Dun Morogh)",
}, -- [41]
{
["ExtraLine"] = "Buy Thunder Ale from Innkeeper",
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["ItemID"] = 2686,
["Qid"] = 413,
["Trigger"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Ammount"] = 1,
["Range"] = 0.01,
["ExtraQpart"] = "Thunder Ale",
}, -- [42]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
["Range"] = 3.07,
["TT"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
}, -- [43]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5605,
["x"] = -549.4,
},
["Range"] = 4.24,
["TT"] = {
["y"] = -5605,
["x"] = -549.4,
},
}, -- [44]
{
["ExtraLine"] = "Click barren then give Ale to Jarven",
["Zone"] = "1 (Dun Morogh)",
["ExtraLine2"] = "then click Barrel again when he moved",
["PickUp"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5606.5,
["x"] = -547.4,
},
}, -- [45]
{
["Done"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5372.3,
["x"] = 314.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [46]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[287] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
["Range"] = 23.6,
["TT"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
}, -- [47]
{
["Qpart"] = {
[287] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
["Range"] = 29.86,
["TT"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
}, -- [48]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
["Range"] = 19.31,
["TT"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
}, -- [49]
{
["Qpart"] = {
[412] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
["Range"] = 54.66,
["TT"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
}, -- [50]
{
["Qpart"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5424,
["x"] = 462,
},
["Range"] = 112.58,
["TT"] = {
["y"] = -5424,
["x"] = 462,
},
}, -- [51]
{
["Done"] = {
319, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [52]
{
["PickUp"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [53]
{
["Done"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5645,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [54]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
["Range"] = 8.59,
["TT"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
}, -- [55]
{
["Done"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.4,
["x"] = -456.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [56]
{
["CRange"] = 320,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
["Range"] = 3.41,
["TT"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
}, -- [57]
{
["Done"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5466.5,
["x"] = -632.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [58]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5715.1,
["x"] = -1580.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [59]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.4,
["x"] = -1600.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [60]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
["Range"] = 35.44,
["TT"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
}, -- [61]
{
["CRange"] = 433,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
["Range"] = 15.11,
["TT"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
}, -- [62]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [63]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.6,
["x"] = -1600.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [64]
{
["PickUp"] = {
6064, -- [1]
},
["TT"] = {
["y"] = -5618.3,
["x"] = -453.9,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5449.4,
["x"] = -553.8,
},
["Qpart"] = {
[6064] = {
["1"] = "1",
},
},
["Button"] = 15911,
["ShowMobsOnMap"] = 1126,
["ShowMobsOnMap2"] = 6064,
["ShowMobsOnMap3"] = 1,
["Range"] = 43.8,
["TT"] = {
["y"] = -5449.4,
["x"] = -553.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5618.4,
["x"] = -453.7,
},
["Done"] = {
6064, -- [1]
},
}, -- [1]
{
["PickUp"] = {
6084, -- [1]
},
["TT"] = {
["y"] = -5617.9,
["x"] = -453.9,
},
}, -- [2]
{
["Qpart"] = {
[6084] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5696.9,
["x"] = -506.5,
},
["Button"] = 15913,
["ShowMobsOnMap"] = 1201,
["ShowMobsOnMap2"] = 6084,
["ShowMobsOnMap3"] = 1,
["Range"] = 105.47,
["TT"] = {
["y"] = -5696.5,
["x"] = -508.8,
},
}, -- [3]
{
["TT"] = {
["y"] = -5617.7,
["x"] = -453.9,
},
["Done"] = {
6084, -- [1]
},
}, -- [1]
{
["PickUp"] = {
6085, -- [1]
},
["TT"] = {
["y"] = -5617.7,
["x"] = -453.9,
},
}, -- [2]
{
["Qpart"] = {
[6085] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5624.7,
["x"] = -459.4,
},
["Button"] = 15908,
["ShowMobsOnMap"] = 1196,
["ShowMobsOnMap2"] = 6085,
["ShowMobsOnMap3"] = 1,
["Range"] = 903.23,
["TT"] = {
["y"] = -5623.9,
["x"] = -458.8,
},
}, -- [3]
{
["TT"] = {
["y"] = -5618.2,
["x"] = -453.8,
},
["Done"] = {
6085, -- [1]
},
}, -- [1]
{
["PickUp"] = {
6086, -- [1]
},
["TT"] = {
["y"] = -5617.4,
["x"] = -454.2,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -5252.4,
["x"] = -535.7,
},
["Range"] = 11.95,
["CRange"] = 6086,
["TT"] = {
["y"] = -5252.4,
["x"] = -535.7,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5182.8,
["x"] = -726.3,
},
["Range"] = 19.15,
["CRange"] = 6086,
["TT"] = {
["y"] = -5182.8,
["x"] = -726.3,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -5076.7,
["x"] = -758,
},
["Range"] = 11.34,
["CRange"] = 6086,
["TT"] = {
["y"] = -5076.7,
["x"] = -758,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -5022.4,
["x"] = -829.2,
},
["Range"] = 14.11,
["CRange"] = 6086,
["TT"] = {
["y"] = -5022.4,
["x"] = -829.2,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -4985.9,
["x"] = -889.3,
},
["Range"] = 15.35,
["CRange"] = 6086,
["TT"] = {
["y"] = -4985.9,
["x"] = -889.3,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5007,
["x"] = -926.7,
},
["Range"] = 12.35,
["CRange"] = 6086,
["TT"] = {
["y"] = -5007,
["x"] = -926.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -4995,
["x"] = -967,
},
["Range"] = 12.35,
["CRange"] = 6086,
["TT"] = {
["y"] = -4995,
["x"] = -967,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -4994.5,
["x"] = -1223.8,
},
["Range"] = 9.47,
["CRange"] = 6086,
["TT"] = {
["y"] = -4994.5,
["x"] = -1223.8,
},
}, -- [4]
{
["TT"] = {
["y"] = -5021.5,
["x"] = -1273,
},
["Done"] = {
6086, -- [1]
},
}, -- [5]
{
["Trigger"] = {
["y"] = -4916.2,
["x"] = -1137,
},
["Range"] = 15.04,
["CRange"] = 291,
["TT"] = {
["y"] = -4916.2,
["x"] = -1137,
},
}, -- [6]
{
["Trigger"] = {
["y"] = -4886.9,
["x"] = -1120.6,
},
["Range"] = 10.89,
["CRange"] = 291,
["TT"] = {
["y"] = -4886.9,
["x"] = -1120.6,
},
}, -- [7]
{
["Trigger"] = {
["y"] = -4834.9,
["x"] = -1082.9,
},
["Range"] = 9.71,
["CRange"] = 291,
["TT"] = {
["y"] = -4834.9,
["x"] = -1082.9,
},
}, -- [8]
{
["Trigger"] = {
["y"] = -4829.8,
["x"] = -1066.5,
},
["Range"] = 7.55,
["CRange"] = 291,
["TT"] = {
["y"] = -4829.8,
["x"] = -1066.5,
},
}, -- [9]
{
["TT"] = {
["y"] = -4871.5,
["x"] = -1026.3,
},
["Done"] = {
291, -- [1]
},
}, -- [10]
{
["UseHS"] = 413,
["TT"] = {
["y"] = -4870.4,
["x"] = -1026.8,
},
}, -- [11]
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["SetHS"] = 416,
["TT"] = {
["y"] = -5378.5,
["x"] = -2973.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-6DwarfGnome-Mage"] = {
{
["PickUp"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
},
{
["Qpart"] = {
[179] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 333.7,
["y"] = -6333.5,
},
["Range"] = 66.08,
["TT"] = {
["x"] = 333.8,
["y"] = -6333,
},
},
{
["Done"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["PickUp"] = {
233,
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["PickUp"] = {
1234567890,
},
["PickUpClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6214.9,
["x"] = 328.8,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["PickUp"] = {
170,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["ExtraLine"] = "You might want to sell beforehand!",
["Qpart"] = {
[170] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
["Fillers"] = {
[170] = {
["2"] = "2",
},
},
["Range"] = 58.07,
["TT"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
}, -- [5]
{
["Qpart"] = {
[170] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
["Range"] = 28.22,
["TT"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
}, -- [6]
{
["Done"] = {
170,
},
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
["Range"] = 10.75,
["TT"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
}, -- [8]
{
["ExtraLine"] = "Train skills and sell",
["Done"] = {
1234567890,
},
["DoneClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6084.5,
["x"] = 382.5,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6084.5,
["x"] = 382.5,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6120.3,
["x"] = 382.6,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6091.5,
["x"] = 365.7,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6093.4,
["x"] = 405.3,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6093.4,
["x"] = 405.3,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6056.5,
["x"] = 394,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6055.9,
["x"] = 388.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6048.8,
["x"] = 390.3,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["ExtraLine"] = "Train skills and sell",
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["PickUp"] = {
3361,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["ExtraLine"] = "Train skills and sell",
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
["Range"] = 10.68,
["TT"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
}, -- [10]
{
["Done"] = {
233,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["PickUp"] = {
183,
234,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[183] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
["Range"] = 40.09,
["TT"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
}, -- [13]
{
["Done"] = {
183,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [14]
{
["Done"] = {
234,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["PickUp"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [16]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6370.4,
["x"] = 572.4,
},
}, -- [1]
{
["PickUp"] = {
3364,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [17]
{
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.77,
["TT"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
}, -- [18]
{
["ExtraLine"] = "Die now (shortcut) and revive at spirit healer",
["CRange"] = 3364,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
["Range"] = 3.94,
["TT"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
}, -- [19]
{
["Done"] = {
3364,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["PickUp"] = {
3365,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [21]
{
["ExtraLine"] = "Sell on the way out/learn skills",
["CRange"] = 3361,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
["Range"] = 12.41,
["TT"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
}, -- [22]
{
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
[3361] = {
["3"] = "3",
},
},
["Range"] = 3.01,
["TT"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
}, -- [23]
{
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 505.3,
["y"] = -6480,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.31,
["TT"] = {
["x"] = 505.3,
["y"] = -6480,
},
}, -- [24]
{
["Qpart"] = {
[182] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
["Range"] = 55.76,
["TT"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
}, -- [25]
{
["Done"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["PickUp"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [27]
{
["Done"] = {
3365,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [28]
{
["Trigger"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
["Range"] = 15.73,
["CRange"] = 218,
["TT"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
["Range"] = 11.81,
["CRange"] = 218,
["TT"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
}, -- [4]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
["Range"] = 8.7,
["TT"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
}, -- [29]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
["Range"] = 7.84,
["TT"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
}, -- [30]
{
["Qpart"] = {
[218] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
["Range"] = 0.14,
["TT"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
}, -- [31]
{
["Done"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["PickUp"] = {
282,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["Trigger"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
["Range"] = 15.56,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
}, -- [5]
{
["Done"] = {
3361,
},
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["ExtraLine"] = "Sell on your way out",
["CRange"] = 282,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
["Range"] = 9.94,
["TT"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
}, -- [35]
{
["Done"] = {
282,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [36]
{
["PickUp"] = {
420,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [37]
{
["PickUp"] = {
2160,
},
["TT"] = {
["x"] = 135,
["y"] = -6248.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
["Range"] = 9.92,
["TT"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
}, -- [1]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
["Range"] = 9.95,
["TT"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["Done"] = {
420, -- [1]
},
["TT"] = {
["y"] = -5644.4,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["UpdMapID"] = 1,
},
},
["6-12DwarfGnome-Mage"] = {
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["ExtraLine"] = "Get First Aid / train abilitys",
["SetHS"] = 384,
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["PickUp"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5574.5,
["x"] = -464.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [8]
{
["PickUp"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.1,
["x"] = -632.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5472.6,
["x"] = -641.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["PickUp"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -5500.3,
["x"] = -665,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["Done"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5489,
["x"] = -681.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[5541] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
}, -- [13]
{
["Qpart"] = {
[313] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5645.9,
["x"] = -285.7,
},
["Range"] = 10,
["TT"] = {
["y"] = -5649.3,
["x"] = -283.3,
},
}, -- [14]
{
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Done"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -6015.4,
["x"] = -201.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["Qpart"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["Range"] = 91.12,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [16]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["level"] = 6,
["xp"] = 3000,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [17]
{
["ExtraLine"] = "Buy Rhapsody Malt off Innkeeper",
["Qpart"] = {
[384] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
}, -- [18]
{
["Done"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.1,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [19]
{
["PickUp"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5644.5,
["x"] = -499.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5470,
["x"] = -464.6,
},
["Range"] = 5.01,
["TT"] = {
["y"] = -5470,
["x"] = -464.6,
},
}, -- [21]
{
["PickUp"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.8,
["x"] = -455.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [22]
{
["Done"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [23]
{
["PickUp"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [24]
{
["Done"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5473.2,
["x"] = -641.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [25]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5625,
["x"] = -465.7,
},
["Range"] = 24.92,
["TT"] = {
["y"] = -5625,
["x"] = -465.7,
},
}, -- [26]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
["Range"] = 34.54,
["TT"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
}, -- [27]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
["Range"] = 21.06,
["TT"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
}, -- [28]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
["Range"] = 6.79,
["TT"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
}, -- [29]
{
["PickUp"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5571.4,
["x"] = 97.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [30]
{
["ExtraLine"] = "Let yeti patrol out before you loot chest",
["Qpart"] = {
[312] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
}, -- [31]
{
["Done"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5572.4,
["x"] = 96.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["Done"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["PickUp"] = {
319, -- [1]
315, -- [2]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
310, -- [1]
},
["TT"] = {
["y"] = -5373.1,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [35]
{
["CRange"] = 315,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
["Range"] = 28.93,
["TT"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
}, -- [36]
{
["Qpart"] = {
[315] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
["Range"] = 59.63,
["TT"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
}, -- [37]
{
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
315, -- [1]
},
["TT"] = {
["y"] = -5379.3,
["x"] = 314.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["Grind"] = 11951,
["Range"] = 81.44,
["Trigger"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
["level"] = 8,
["xp"] = 1,
["TT"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
}, -- [39]
{
["PickUp"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [40]
{
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["UseHS"] = 413,
["Zone"] = "1 (Dun Morogh)",
}, -- [41]
{
["ExtraLine"] = "Buy Thunder Ale from Innkeeper",
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["ItemID"] = 2686,
["Qid"] = 413,
["Trigger"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Ammount"] = 1,
["Range"] = 0.01,
["ExtraQpart"] = "Thunder Ale",
}, -- [42]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
["Range"] = 3.07,
["TT"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
}, -- [43]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5605,
["x"] = -549.4,
},
["Range"] = 4.24,
["TT"] = {
["y"] = -5605,
["x"] = -549.4,
},
}, -- [44]
{
["ExtraLine"] = "Click barren then give Ale to Jarven",
["Zone"] = "1 (Dun Morogh)",
["ExtraLine2"] = "then click Barrel again when he moved",
["PickUp"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5606.5,
["x"] = -547.4,
},
}, -- [45]
{
["Done"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5372.3,
["x"] = 314.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [46]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[287] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
["Range"] = 23.6,
["TT"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
}, -- [47]
{
["Qpart"] = {
[287] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
["Range"] = 29.86,
["TT"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
}, -- [48]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
["Range"] = 19.31,
["TT"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
}, -- [49]
{
["Qpart"] = {
[412] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
["Range"] = 54.66,
["TT"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
}, -- [50]
{
["Qpart"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5424,
["x"] = 462,
},
["Range"] = 112.58,
["TT"] = {
["y"] = -5424,
["x"] = 462,
},
}, -- [51]
{
["Done"] = {
319, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [52]
{
["PickUp"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [53]
{
["Done"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5645,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [54]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
["Range"] = 8.59,
["TT"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
}, -- [55]
{
["Done"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.4,
["x"] = -456.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [56]
{
["CRange"] = 320,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
["Range"] = 3.41,
["TT"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
}, -- [57]
{
["Done"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5466.5,
["x"] = -632.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [58]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5715.1,
["x"] = -1580.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [59]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.4,
["x"] = -1600.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [60]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
["Range"] = 35.44,
["TT"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
}, -- [61]
{
["CRange"] = 433,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
["Range"] = 15.11,
["TT"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
}, -- [62]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [63]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.6,
["x"] = -1600.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [64]
{
["PickUp"] = {
1879, -- [1]
},
["TT"] = {
["y"] = -5586,
["x"] = -536.8,
},
}, -- [1]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5251,
["x"] = -545.8,
},
["Range"] = 15.09,
["TT"] = {
["y"] = -5251,
["x"] = -545.8,
},
}, -- [2]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5180.4,
["x"] = -728.5,
},
["Range"] = 10.3,
["TT"] = {
["y"] = -5180.4,
["x"] = -728.5,
},
}, -- [3]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5055.5,
["x"] = -779.3,
},
["Range"] = 16.59,
["TT"] = {
["y"] = -5055.5,
["x"] = -779.3,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -4987.2,
["x"] = -889.5,
},
["Range"] = 11.17,
["CRange"] = 291,
["TT"] = {
["y"] = -4987.2,
["x"] = -889.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5006.7,
["x"] = -927.8,
},
["Range"] = 12.7,
["CRange"] = 291,
["TT"] = {
["y"] = -5006.7,
["x"] = -927.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -4977.4,
["x"] = -964.8,
},
["Range"] = 10.11,
["CRange"] = 291,
["TT"] = {
["y"] = -4977.4,
["x"] = -964.8,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -4944.3,
["x"] = -1015,
},
["Range"] = 4.4,
["CRange"] = 291,
["TT"] = {
["y"] = -4944.3,
["x"] = -1015,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -4945.4,
["x"] = -1026.3,
},
["Range"] = 5.83,
["CRange"] = 291,
["TT"] = {
["y"] = -4945.4,
["x"] = -1026.3,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -4853.9,
["x"] = -1081.5,
},
["Range"] = 10.09,
["CRange"] = 291,
["TT"] = {
["y"] = -4853.9,
["x"] = -1081.5,
},
}, -- [6]
{
["Trigger"] = {
["y"] = -4835.4,
["x"] = -1083.1,
},
["Range"] = 8.24,
["CRange"] = 291,
["TT"] = {
["y"] = -4835.4,
["x"] = -1083.1,
},
}, -- [7]
{
["Trigger"] = {
["y"] = -4831.7,
["x"] = -1063.9,
},
["Range"] = 5.37,
["CRange"] = 291,
["TT"] = {
["y"] = -4831.7,
["x"] = -1063.9,
},
}, -- [8]
{
["TT"] = {
["y"] = -4872.4,
["x"] = -1025.8,
},
["Done"] = {
291, -- [1]
},
}, -- [10]
{
["TT"] = {
["y"] = -4612.5,
["x"] = -928.3,
},
["Done"] = {
1879, -- [1]
},
}, -- [6]
{
["TT"] = {
["y"] = -4612.5,
["x"] = -928.3,
},
["PickUp"] = {
1880, -- [1]
},
}, -- [6]
{
["ExtraLine"] = "See Weapon trainer if you have cash",
["ExtraLine2"] = "else press skip waypoint",
["CRange"] = 1880,
["Trigger"] = {
["y"] = -5041,
["x"] = -1197.4,
},
["Range"] = 2.67,
["TT"] = {
["y"] = -5041,
["x"] = -1197.4,
},
}, -- [1]
{
["SetHS"] = 1880,
["RaidIcon"] = 5111,
["TT"] = {
["y"] = -4840.9,
["x"] = -859,
},
}, -- [3]
{
["ExtraLine"] = "Time to go out of Ironforge",
["CRange"] = 1880,
["Trigger"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
["Range"] = 17.95,
["TT"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
}, -- [2]
{
["ExtraLine"] = "Loot chest",
["Qpart"] = {
[1880] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5072.4,
["x"] = 437.3,
},
["Range"] = 0.01,
["TT"] = {
["y"] = -5072.4,
["x"] = 437.3,
},
}, -- [96]
{
["UseHS"] = 1880,
["TT"] = {
["y"] = -5072.4,
["x"] = 437.3,
},
}, -- [6]
{
["TT"] = {
["y"] = -4612.5,
["x"] = -928.3,
},
["Done"] = {
1880, -- [1]
},
}, -- [6]
{
["ExtraLine"] = "Time to go out of Ironforge",
["CRange"] = 433,
["Trigger"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
["Range"] = 17.95,
["TT"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
}, -- [2]
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["SetHS"] = 416,
["TT"] = {
["y"] = -5378.5,
["x"] = -2973.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-6DwarfGnome-Paladin"] = {
{
["PickUp"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
},
{
["Qpart"] = {
[179] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 333.7,
["y"] = -6333.5,
},
["Range"] = 66.08,
["TT"] = {
["x"] = 333.8,
["y"] = -6333,
},
},
{
["Done"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["PickUp"] = {
233,
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["PickUp"] = {
1234567890,
},
["PickUpClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6214.9,
["x"] = 328.8,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["PickUp"] = {
170,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["ExtraLine"] = "You might want to sell beforehand!",
["Qpart"] = {
[170] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
["Fillers"] = {
[170] = {
["2"] = "2",
},
},
["Range"] = 58.07,
["TT"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
}, -- [5]
{
["Qpart"] = {
[170] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
["Range"] = 28.22,
["TT"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
}, -- [6]
{
["Done"] = {
170,
},
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
["Range"] = 10.75,
["TT"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
}, -- [8]
{
["ExtraLine"] = "Train skills and sell",
["Done"] = {
1234567890,
},
["DoneClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6084.5,
["x"] = 382.5,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6084.5,
["x"] = 382.5,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6120.3,
["x"] = 382.6,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6091.5,
["x"] = 365.7,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6093.4,
["x"] = 405.3,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6093.4,
["x"] = 405.3,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6056.5,
["x"] = 394,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6055.9,
["x"] = 388.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6048.8,
["x"] = 390.3,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["ExtraLine"] = "Train skills and sell",
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["PickUp"] = {
3361,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["ExtraLine"] = "Train skills and sell",
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
["Range"] = 10.68,
["TT"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
}, -- [10]
{
["Done"] = {
233,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["PickUp"] = {
183,
234,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[183] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
["Range"] = 40.09,
["TT"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
}, -- [13]
{
["Done"] = {
183,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [14]
{
["Done"] = {
234,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["PickUp"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [16]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6370.4,
["x"] = 572.4,
},
}, -- [1]
{
["PickUp"] = {
3364,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [17]
{
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.77,
["TT"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
}, -- [18]
{
["ExtraLine"] = "Die now (shortcut) and revive at spirit healer",
["CRange"] = 3364,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
["Range"] = 3.94,
["TT"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
}, -- [19]
{
["Done"] = {
3364,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["PickUp"] = {
3365,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [21]
{
["ExtraLine"] = "Sell on the way out/learn skills",
["CRange"] = 3361,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
["Range"] = 12.41,
["TT"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
}, -- [22]
{
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
[3361] = {
["3"] = "3",
},
},
["Range"] = 3.01,
["TT"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
}, -- [23]
{
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 505.3,
["y"] = -6480,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.31,
["TT"] = {
["x"] = 505.3,
["y"] = -6480,
},
}, -- [24]
{
["Qpart"] = {
[182] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
["Range"] = 55.76,
["TT"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
}, -- [25]
{
["Done"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["PickUp"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [27]
{
["Done"] = {
3365,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [28]
{
["Trigger"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
["Range"] = 15.73,
["CRange"] = 218,
["TT"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
["Range"] = 11.81,
["CRange"] = 218,
["TT"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
}, -- [4]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
["Range"] = 8.7,
["TT"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
}, -- [29]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
["Range"] = 7.84,
["TT"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
}, -- [30]
{
["Qpart"] = {
[218] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
["Range"] = 0.14,
["TT"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
}, -- [31]
{
["Done"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["PickUp"] = {
282,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["Trigger"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
["Range"] = 15.56,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
}, -- [5]
{
["Done"] = {
3361,
},
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["ExtraLine"] = "Sell on your way out",
["CRange"] = 282,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
["Range"] = 9.94,
["TT"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
}, -- [35]
{
["Done"] = {
282,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [36]
{
["PickUp"] = {
420,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [37]
{
["PickUp"] = {
2160,
},
["TT"] = {
["x"] = 135,
["y"] = -6248.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
["Range"] = 9.92,
["TT"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
}, -- [1]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
["Range"] = 9.95,
["TT"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["Done"] = {
420, -- [1]
},
["TT"] = {
["y"] = -5644.4,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["UpdMapID"] = 1,
},
},
["6-12DwarfGnome-Paladin"] = {
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["ExtraLine"] = "Get First Aid / train abilitys",
["SetHS"] = 384,
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["PickUp"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5574.5,
["x"] = -464.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [8]
{
["PickUp"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.1,
["x"] = -632.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5472.6,
["x"] = -641.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["PickUp"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -5500.3,
["x"] = -665,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["Done"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5489,
["x"] = -681.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[5541] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
}, -- [13]
{
["Qpart"] = {
[313] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5645.9,
["x"] = -285.7,
},
["Range"] = 10,
["TT"] = {
["y"] = -5649.3,
["x"] = -283.3,
},
}, -- [14]
{
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Done"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -6015.4,
["x"] = -201.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["Qpart"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["Range"] = 91.12,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [16]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["level"] = 6,
["xp"] = 3000,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [17]
{
["ExtraLine"] = "Buy Rhapsody Malt off Innkeeper",
["Qpart"] = {
[384] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
}, -- [18]
{
["Done"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.1,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [19]
{
["PickUp"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5644.5,
["x"] = -499.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5470,
["x"] = -464.6,
},
["Range"] = 5.01,
["TT"] = {
["y"] = -5470,
["x"] = -464.6,
},
}, -- [21]
{
["PickUp"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.8,
["x"] = -455.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [22]
{
["Done"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [23]
{
["PickUp"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [24]
{
["Done"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5473.2,
["x"] = -641.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [25]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5625,
["x"] = -465.7,
},
["Range"] = 24.92,
["TT"] = {
["y"] = -5625,
["x"] = -465.7,
},
}, -- [26]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
["Range"] = 34.54,
["TT"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
}, -- [27]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
["Range"] = 21.06,
["TT"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
}, -- [28]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
["Range"] = 6.79,
["TT"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
}, -- [29]
{
["PickUp"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5571.4,
["x"] = 97.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [30]
{
["ExtraLine"] = "Let yeti patrol out before you loot chest",
["Qpart"] = {
[312] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
}, -- [31]
{
["Done"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5572.4,
["x"] = 96.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["Done"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["PickUp"] = {
319, -- [1]
315, -- [2]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
310, -- [1]
},
["TT"] = {
["y"] = -5373.1,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [35]
{
["CRange"] = 315,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
["Range"] = 28.93,
["TT"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
}, -- [36]
{
["Qpart"] = {
[315] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
["Range"] = 59.63,
["TT"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
}, -- [37]
{
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
315, -- [1]
},
["TT"] = {
["y"] = -5379.3,
["x"] = 314.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["Grind"] = 11951,
["Range"] = 81.44,
["Trigger"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
["level"] = 8,
["xp"] = 1,
["TT"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
}, -- [39]
{
["PickUp"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [40]
{
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["UseHS"] = 413,
["Zone"] = "1 (Dun Morogh)",
}, -- [41]
{
["ExtraLine"] = "Buy Thunder Ale from Innkeeper",
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["ItemID"] = 2686,
["Qid"] = 413,
["Trigger"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Ammount"] = 1,
["Range"] = 0.01,
["ExtraQpart"] = "Thunder Ale",
}, -- [42]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
["Range"] = 3.07,
["TT"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
}, -- [43]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5605,
["x"] = -549.4,
},
["Range"] = 4.24,
["TT"] = {
["y"] = -5605,
["x"] = -549.4,
},
}, -- [44]
{
["ExtraLine"] = "Click barren then give Ale to Jarven",
["Zone"] = "1 (Dun Morogh)",
["ExtraLine2"] = "then click Barrel again when he moved",
["PickUp"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5606.5,
["x"] = -547.4,
},
}, -- [45]
{
["Done"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5372.3,
["x"] = 314.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [46]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[287] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
["Range"] = 23.6,
["TT"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
}, -- [47]
{
["Qpart"] = {
[287] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
["Range"] = 29.86,
["TT"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
}, -- [48]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
["Range"] = 19.31,
["TT"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
}, -- [49]
{
["Qpart"] = {
[412] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
["Range"] = 54.66,
["TT"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
}, -- [50]
{
["Qpart"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5424,
["x"] = 462,
},
["Range"] = 112.58,
["TT"] = {
["y"] = -5424,
["x"] = 462,
},
}, -- [51]
{
["Done"] = {
319, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [52]
{
["PickUp"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [53]
{
["Done"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5645,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [54]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
["Range"] = 8.59,
["TT"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
}, -- [55]
{
["Done"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.4,
["x"] = -456.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [56]
{
["CRange"] = 320,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
["Range"] = 3.41,
["TT"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
}, -- [57]
{
["Done"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5466.5,
["x"] = -632.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [58]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5715.1,
["x"] = -1580.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [59]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.4,
["x"] = -1600.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [60]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
["Range"] = 35.44,
["TT"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
}, -- [61]
{
["CRange"] = 433,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
["Range"] = 15.11,
["TT"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
}, -- [62]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [63]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.6,
["x"] = -1600.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [64]
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["UseHS"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["PickUp"] = {
2997, -- [1]
},
["TT"] = {
["y"] = -5586.9,
["x"] = -542.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["ExtraLine"] = "go to Ironforge",
["CRange"] = 2997,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5256.1,
["x"] = -533.4,
},
["Range"] = 31.76,
["TT"] = {
["y"] = -5256.1,
["x"] = -533.4,
},
}, -- [27]
{
["CRange"] = 2997,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5022.7,
["x"] = -829.3,
},
["Range"] = 18.29,
["TT"] = {
["y"] = -5022.7,
["x"] = -829.3,
},
}, -- [28]
{
["CRange"] = 2997,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4944.3,
["x"] = -1017.5,
},
["Range"] = 7.44,
["TT"] = {
["y"] = -4944.3,
["x"] = -1017.5,
},
}, -- [29]
{
["CRange"] = 291,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4928.2,
["x"] = -1037.4,
},
["Range"] = 7.26,
["TT"] = {
["y"] = -4928.2,
["x"] = -1037.4,
},
}, -- [30]
{
["Done"] = {
291, -- [1]
},
["TT"] = {
["y"] = -4872.6,
["x"] = -1026.1,
},
["Zone"] = "1537 (Ironforge)",
}, -- [31]
{
["ExtraLine"] = "up ramp",
["CRange"] = 2997,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4583,
["x"] = -917.4,
},
["Range"] = 7.42,
["TT"] = {
["y"] = -4583,
["x"] = -917.4,
},
}, -- [32]
{
["Done"] = {
2997, -- [1]
},
["TT"] = {
["y"] = -4634,
["x"] = -932.7,
},
["Zone"] = "1537 (Ironforge)",
}, -- [33]
{
["PickUp"] = {
1645, -- [1]
},
["TT"] = {
["y"] = -4634,
["x"] = -932.7,
},
["Zone"] = "1537 (Ironforge)",
}, -- [34]
{
["Done"] = {
1645, -- [1]
},
["TT"] = {
["y"] = -4634,
["x"] = -932.7,
},
["Zone"] = "1537 (Ironforge)",
}, -- [35]
{
["PickUp"] = {
1646, -- [1]
},
["TT"] = {
["y"] = -4634,
["x"] = -932.7,
},
["ExtraLine"] = "Use book",
["Zone"] = "1537 (Ironforge)",
}, -- [36]
{
["Done"] = {
1646, -- [1]
},
["TT"] = {
["y"] = -4634,
["x"] = -932.7,
},
["Zone"] = "1537 (Ironforge)",
}, -- [37]
{
["PickUp"] = {
1647, -- [1]
},
["TT"] = {
["y"] = -4634,
["x"] = -932.7,
},
["Zone"] = "1537 (Ironforge)",
}, -- [38]
{
["ExtraLine"] = "Find John Turner he patrols",
["CRange"] = 1647,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4842.5,
["x"] = -885.4,
},
["Range"] = 8.48,
["TT"] = {
["y"] = -4842.5,
["x"] = -885.4,
},
}, -- [39]
{
["Done"] = {
1647, -- [1]
},
["TT"] = {
["y"] = -5016.9,
["x"] = -1082.5,
},
["Zone"] = "1537 (Ironforge)",
}, -- [40]
{
["PickUp"] = {
1648, -- [1]
},
["TT"] = {
["y"] = -4922.1,
["x"] = -912.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [41]
{
["Qpart"] = {
[1648] = {
["1"] = "1",
},
},
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4922.1,
["x"] = -912.9,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -4922.1,
["x"] = -912.9,
},
}, -- [42]
{
["Done"] = {
1648, -- [1]
},
["TT"] = {
["y"] = -4947.6,
["x"] = -931.8,
},
["Zone"] = "1537 (Ironforge)",
}, -- [43]
{
["PickUp"] = {
1778, -- [1]
},
["TT"] = {
["y"] = -4961.3,
["x"] = -946.8,
},
["Zone"] = "1537 (Ironforge)",
}, -- [44]
{
["Done"] = {
1778, -- [1]
},
["TT"] = {
["y"] = -4633.3,
["x"] = -932.1,
},
["Zone"] = "1537 (Ironforge)",
}, -- [45]
{
["PickUp"] = {
1779, -- [1]
},
["TT"] = {
["y"] = -4633.3,
["x"] = -932.1,
},
["Zone"] = "1537 (Ironforge)",
}, -- [46]
{
["Done"] = {
1779, -- [1]
},
["TT"] = {
["y"] = -4613.4,
["x"] = -899.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [47]
{
["PickUp"] = {
1783, -- [1]
},
["TT"] = {
["y"] = -4613.4,
["x"] = -899.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [48]
{
["ExtraLine"] = "exit Ironforge",
["CRange"] = 1783,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5022.7,
["x"] = -832.5,
},
["Range"] = 11.93,
["TT"] = {
["y"] = -5022.7,
["x"] = -832.5,
},
}, -- [49]
{
["ExtraLine"] = "Use Symbol of Life on Narm",
["Done"] = {
1783, -- [1]
},
["TT"] = {
["y"] = -5784.1,
["x"] = -2055,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [50]
{
["PickUp"] = {
1784, -- [1]
},
["TT"] = {
["y"] = -5784.1,
["x"] = -2055,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [51]
{
["Qpart"] = {
[1784] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5901.3,
["x"] = -2033.2,
},
["Range"] = 57.91,
["TT"] = {
["y"] = -5901.3,
["x"] = -2033.2,
},
}, -- [52]
{
["ExtraLine"] = "Die spirit rez and run to Ironforge",
["CRange"] = 1784,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5021.2,
["x"] = -831.9,
},
["Range"] = 15.83,
["TT"] = {
["y"] = -5021.2,
["x"] = -831.9,
},
}, -- [53]
{
["Done"] = {
1784, -- [1]
},
["TT"] = {
["y"] = -4613.1,
["x"] = -899.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [54]
{
["PickUp"] = {
1785, -- [1]
},
["TT"] = {
["y"] = -4613.1,
["x"] = -899.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [55]
{
["Done"] = {
1785, -- [1]
},
["TT"] = {
["y"] = -4633.7,
["x"] = -931.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [56]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-6DwarfGnome-Priest"] = {
{
["PickUp"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
},
{
["Qpart"] = {
[179] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 333.7,
["y"] = -6333.5,
},
["Range"] = 66.08,
["TT"] = {
["x"] = 333.8,
["y"] = -6333,
},
},
{
["Done"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["PickUp"] = {
233,
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["PickUp"] = {
1234567890,
},
["PickUpClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6214.9,
["x"] = 328.8,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["PickUp"] = {
170,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["ExtraLine"] = "You might want to sell beforehand!",
["Qpart"] = {
[170] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
["Fillers"] = {
[170] = {
["2"] = "2",
},
},
["Range"] = 58.07,
["TT"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
}, -- [5]
{
["Qpart"] = {
[170] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
["Range"] = 28.22,
["TT"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
}, -- [6]
{
["Done"] = {
170,
},
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
["Range"] = 10.75,
["TT"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
}, -- [8]
{
["ExtraLine"] = "Train skills and sell",
["Done"] = {
1234567890,
},
["DoneClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6084.5,
["x"] = 382.5,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6084.5,
["x"] = 382.5,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6120.3,
["x"] = 382.6,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6091.5,
["x"] = 365.7,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6093.4,
["x"] = 405.3,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6093.4,
["x"] = 405.3,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6056.5,
["x"] = 394,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6055.9,
["x"] = 388.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6048.8,
["x"] = 390.3,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["ExtraLine"] = "Train skills and sell",
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["PickUp"] = {
3361,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["ExtraLine"] = "Train skills and sell",
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
["Range"] = 10.68,
["TT"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
}, -- [10]
{
["Done"] = {
233,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["PickUp"] = {
183,
234,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[183] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
["Range"] = 40.09,
["TT"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
}, -- [13]
{
["Done"] = {
183,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [14]
{
["Done"] = {
234,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["PickUp"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [16]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6370.4,
["x"] = 572.4,
},
}, -- [1]
{
["PickUp"] = {
3364,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [17]
{
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.77,
["TT"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
}, -- [18]
{
["ExtraLine"] = "Die now (shortcut) and revive at spirit healer",
["CRange"] = 3364,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
["Range"] = 3.94,
["TT"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
}, -- [19]
{
["Done"] = {
3364,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["PickUp"] = {
3365,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [21]
{
["ExtraLine"] = "Sell on the way out/learn skills",
["CRange"] = 3361,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
["Range"] = 12.41,
["TT"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
}, -- [22]
{
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
[3361] = {
["3"] = "3",
},
},
["Range"] = 3.01,
["TT"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
}, -- [23]
{
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 505.3,
["y"] = -6480,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.31,
["TT"] = {
["x"] = 505.3,
["y"] = -6480,
},
}, -- [24]
{
["Qpart"] = {
[182] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
["Range"] = 55.76,
["TT"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
}, -- [25]
{
["Done"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["PickUp"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [27]
{
["Done"] = {
3365,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [28]
{
["Trigger"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
["Range"] = 15.73,
["CRange"] = 218,
["TT"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
["Range"] = 11.81,
["CRange"] = 218,
["TT"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
}, -- [4]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
["Range"] = 8.7,
["TT"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
}, -- [29]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
["Range"] = 7.84,
["TT"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
}, -- [30]
{
["Qpart"] = {
[218] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
["Range"] = 0.14,
["TT"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
}, -- [31]
{
["Done"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["PickUp"] = {
282,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["Trigger"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
["Range"] = 15.56,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
}, -- [5]
{
["Done"] = {
3361,
},
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
5626,
},
["Zone"] = "1 (Dun Morogh)",
["TT"] = {
["y"] = -6057.6,
["x"] = 393.2,
},
},
{
["ExtraLine"] = "Sell on your way out",
["CRange"] = 282,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
["Range"] = 9.94,
["TT"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
}, -- [35]
{
["Done"] = {
282,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [36]
{
["PickUp"] = {
420,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [37]
{
["PickUp"] = {
2160,
},
["TT"] = {
["x"] = 135,
["y"] = -6248.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
["Range"] = 9.92,
["TT"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
}, -- [1]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
["Range"] = 9.95,
["TT"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["Done"] = {
420, -- [1]
},
["TT"] = {
["y"] = -5644.4,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["UpdMapID"] = 1,
},
},
["6-12DwarfGnome-Priest"] = {
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["ExtraLine"] = "Get First Aid / train abilitys",
["SetHS"] = 384,
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["Zone"] = "1 (Dun Morogh)",
["Done"] = {
5626,
},
["TT"] = {
["y"] = -5590.6,
["x"] = -529.8,
},
},
{
["PickUp"] = {
5625,
},
["Zone"] = "1 (Dun Morogh)",
["TT"] = {
["y"] = -5590.6,
["x"] = -529.8,
},
},
{
["PickUp"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5574.5,
["x"] = -464.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [8]
{
["Qpart"] = {
[5625] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5668.6,
["x"] = -454.2,
},
["Range"] = 0.05,
["TT"] = {
["y"] = -5668.6,
["x"] = -454.2,
},
},
{
["Qpart"] = {
[5625] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5668.6,
["x"] = -454.2,
},
["Range"] = 0.05,
["TT"] = {
["y"] = -5668.6,
["x"] = -454.2,
},
},
{
["Zone"] = "1 (Dun Morogh)",
["Done"] = {
5625,
},
["TT"] = {
["y"] = -5590.6,
["x"] = -529.5,
},
},
{
["PickUp"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.1,
["x"] = -632.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5472.6,
["x"] = -641.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["PickUp"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -5500.3,
["x"] = -665,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["Done"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5489,
["x"] = -681.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[5541] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
}, -- [13]
{
["Qpart"] = {
[313] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5645.9,
["x"] = -285.7,
},
["Range"] = 10,
["TT"] = {
["y"] = -5649.3,
["x"] = -283.3,
},
}, -- [14]
{
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Done"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -6015.4,
["x"] = -201.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["Qpart"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["Range"] = 91.12,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [16]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["level"] = 6,
["xp"] = 3000,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [17]
{
["ExtraLine"] = "Buy Rhapsody Malt off Innkeeper",
["Qpart"] = {
[384] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
}, -- [18]
{
["Done"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.1,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [19]
{
["PickUp"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5644.5,
["x"] = -499.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5470,
["x"] = -464.6,
},
["Range"] = 5.01,
["TT"] = {
["y"] = -5470,
["x"] = -464.6,
},
}, -- [21]
{
["PickUp"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.8,
["x"] = -455.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [22]
{
["Done"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [23]
{
["PickUp"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [24]
{
["Done"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5473.2,
["x"] = -641.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [25]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5625,
["x"] = -465.7,
},
["Range"] = 24.92,
["TT"] = {
["y"] = -5625,
["x"] = -465.7,
},
}, -- [26]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
["Range"] = 34.54,
["TT"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
}, -- [27]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
["Range"] = 21.06,
["TT"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
}, -- [28]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
["Range"] = 6.79,
["TT"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
}, -- [29]
{
["PickUp"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5571.4,
["x"] = 97.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [30]
{
["ExtraLine"] = "Let yeti patrol out before you loot chest",
["Qpart"] = {
[312] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
}, -- [31]
{
["Done"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5572.4,
["x"] = 96.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["Done"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["PickUp"] = {
319, -- [1]
315, -- [2]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
310, -- [1]
},
["TT"] = {
["y"] = -5373.1,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [35]
{
["CRange"] = 315,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
["Range"] = 28.93,
["TT"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
}, -- [36]
{
["Qpart"] = {
[315] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
["Range"] = 59.63,
["TT"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
}, -- [37]
{
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
315, -- [1]
},
["TT"] = {
["y"] = -5379.3,
["x"] = 314.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["Grind"] = 11951,
["Range"] = 81.44,
["Trigger"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
["level"] = 8,
["xp"] = 1,
["TT"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
}, -- [39]
{
["PickUp"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [40]
{
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["UseHS"] = 413,
["Zone"] = "1 (Dun Morogh)",
}, -- [41]
{
["ExtraLine"] = "Buy Thunder Ale from Innkeeper",
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["ItemID"] = 2686,
["Qid"] = 413,
["Trigger"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Ammount"] = 1,
["Range"] = 0.01,
["ExtraQpart"] = "Thunder Ale",
}, -- [42]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
["Range"] = 3.07,
["TT"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
}, -- [43]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5605,
["x"] = -549.4,
},
["Range"] = 4.24,
["TT"] = {
["y"] = -5605,
["x"] = -549.4,
},
}, -- [44]
{
["ExtraLine"] = "Click barren then give Ale to Jarven",
["Zone"] = "1 (Dun Morogh)",
["ExtraLine2"] = "then click Barrel again when he moved",
["PickUp"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5606.5,
["x"] = -547.4,
},
}, -- [45]
{
["Done"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5372.3,
["x"] = 314.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [46]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[287] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
["Range"] = 23.6,
["TT"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
}, -- [47]
{
["Qpart"] = {
[287] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
["Range"] = 29.86,
["TT"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
}, -- [48]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
["Range"] = 19.31,
["TT"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
}, -- [49]
{
["Qpart"] = {
[412] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
["Range"] = 54.66,
["TT"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
}, -- [50]
{
["Qpart"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5424,
["x"] = 462,
},
["Range"] = 112.58,
["TT"] = {
["y"] = -5424,
["x"] = 462,
},
}, -- [51]
{
["Done"] = {
319, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [52]
{
["PickUp"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [53]
{
["Done"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5645,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [54]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
["Range"] = 8.59,
["TT"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
}, -- [55]
{
["Done"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.4,
["x"] = -456.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [56]
{
["CRange"] = 320,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
["Range"] = 3.41,
["TT"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
}, -- [57]
{
["Done"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5466.5,
["x"] = -632.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [58]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5715.1,
["x"] = -1580.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [59]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.4,
["x"] = -1600.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [60]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
["Range"] = 35.44,
["TT"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
}, -- [61]
{
["CRange"] = 433,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
["Range"] = 15.11,
["TT"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
}, -- [62]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [63]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.6,
["x"] = -1600.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [64]
{
["PickUp"] = {
5635,
},
["Zone"] = "1 (Dun Morogh)",
["TT"] = {
["y"] = -5590.6,
["x"] = -529.5,
},
},
{
["ExtraLine"] = "go to Ironforge",
["CRange"] = 5635,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5252.5,
["x"] = -539.1,
},
["Range"] = 28.2,
["TT"] = {
["y"] = -5252.5,
["x"] = -539.1,
},
},
{
["CRange"] = 5635,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5016.7,
["x"] = -839.5,
},
["Range"] = 27.57,
["TT"] = {
["y"] = -5016.7,
["x"] = -839.5,
},
},
{
["CRange"] = 291,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4944.6,
["x"] = -1016.7,
},
["Range"] = 4.55,
["TT"] = {
["y"] = -4944.6,
["x"] = -1016.7,
},
},
{
["CRange"] = 291,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4905.2,
["x"] = -1048.4,
},
["Range"] = 8.54,
["TT"] = {
["y"] = -4905.2,
["x"] = -1048.4,
},
},
{
["Zone"] = "1537 (Ironforge)",
["Done"] = {
291,
},
["TT"] = {
["y"] = -4872.5,
["x"] = -1026.5,
},
},
{
["ExtraLine"] = "go to Stormwind thru Tram",
["CRange"] = 5635,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8364.6,
["x"] = 535.9,
},
["Range"] = 62.73,
["TT"] = {
["y"] = -4839.4,
["x"] = -1318.6,
},
},
{
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
5635,
},
["TT"] = {
["y"] = -8515.4,
["x"] = 859.5,
},
},
{
["Zone"] = "1519 (Stormwind City)",
["UseHS"] = 419,
["TT"] = {
["y"] = -8515.4,
["x"] = 859.5,
},
},
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["SetHS"] = 416,
["TT"] = {
["y"] = -5378.5,
["x"] = -2973.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-6DwarfGnome-Rogue"] = {
{
["PickUp"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
},
{
["Qpart"] = {
[179] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 333.7,
["y"] = -6333.5,
},
["Range"] = 66.08,
["TT"] = {
["x"] = 333.8,
["y"] = -6333,
},
},
{
["Done"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["PickUp"] = {
233,
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["PickUp"] = {
1234567890,
},
["PickUpClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6214.9,
["x"] = 328.8,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["PickUp"] = {
170,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["ExtraLine"] = "You might want to sell beforehand!",
["Qpart"] = {
[170] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
["Fillers"] = {
[170] = {
["2"] = "2",
},
},
["Range"] = 58.07,
["TT"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
}, -- [5]
{
["Qpart"] = {
[170] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
["Range"] = 28.22,
["TT"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
}, -- [6]
{
["Done"] = {
170,
},
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
["Range"] = 10.75,
["TT"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
}, -- [8]
{
["ExtraLine"] = "Train skills and sell",
["Done"] = {
1234567890,
},
["DoneClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6084.5,
["x"] = 382.5,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6084.5,
["x"] = 382.5,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6120.3,
["x"] = 382.6,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6091.5,
["x"] = 365.7,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6093.4,
["x"] = 405.3,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6093.4,
["x"] = 405.3,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6056.5,
["x"] = 394,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6055.9,
["x"] = 388.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6048.8,
["x"] = 390.3,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["ExtraLine"] = "Train skills and sell",
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["PickUp"] = {
3361,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["ExtraLine"] = "Train skills and sell",
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
["Range"] = 10.68,
["TT"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
}, -- [10]
{
["Done"] = {
233,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["PickUp"] = {
183,
234,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[183] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
["Range"] = 40.09,
["TT"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
}, -- [13]
{
["Done"] = {
183,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [14]
{
["Done"] = {
234,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["PickUp"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [16]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6370.4,
["x"] = 572.4,
},
}, -- [1]
{
["PickUp"] = {
3364,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [17]
{
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.77,
["TT"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
}, -- [18]
{
["ExtraLine"] = "Die now (shortcut) and revive at spirit healer",
["CRange"] = 3364,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
["Range"] = 3.94,
["TT"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
}, -- [19]
{
["Done"] = {
3364,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["PickUp"] = {
3365,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [21]
{
["ExtraLine"] = "Sell on the way out/learn skills",
["CRange"] = 3361,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
["Range"] = 12.41,
["TT"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
}, -- [22]
{
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
[3361] = {
["3"] = "3",
},
},
["Range"] = 3.01,
["TT"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
}, -- [23]
{
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 505.3,
["y"] = -6480,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.31,
["TT"] = {
["x"] = 505.3,
["y"] = -6480,
},
}, -- [24]
{
["Qpart"] = {
[182] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
["Range"] = 55.76,
["TT"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
}, -- [25]
{
["Done"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["PickUp"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [27]
{
["Done"] = {
3365,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [28]
{
["Trigger"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
["Range"] = 15.73,
["CRange"] = 218,
["TT"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
["Range"] = 11.81,
["CRange"] = 218,
["TT"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
}, -- [4]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
["Range"] = 8.7,
["TT"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
}, -- [29]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
["Range"] = 7.84,
["TT"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
}, -- [30]
{
["Qpart"] = {
[218] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
["Range"] = 0.14,
["TT"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
}, -- [31]
{
["Done"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["PickUp"] = {
282,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["Trigger"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
["Range"] = 15.56,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
}, -- [5]
{
["Done"] = {
3361,
},
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["ExtraLine"] = "Sell on your way out",
["CRange"] = 282,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
["Range"] = 9.94,
["TT"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
}, -- [35]
{
["Done"] = {
282,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [36]
{
["PickUp"] = {
420,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [37]
{
["PickUp"] = {
2160,
},
["TT"] = {
["x"] = 135,
["y"] = -6248.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
["Range"] = 9.92,
["TT"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
}, -- [1]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
["Range"] = 9.95,
["TT"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["Done"] = {
420, -- [1]
},
["TT"] = {
["y"] = -5644.4,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["UpdMapID"] = 1,
},
},
["6-12DwarfGnome-Rogue"] = {
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["ExtraLine"] = "Get First Aid / train abilitys",
["SetHS"] = 384,
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["PickUp"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5574.5,
["x"] = -464.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [8]
{
["PickUp"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.1,
["x"] = -632.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5472.6,
["x"] = -641.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["PickUp"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -5500.3,
["x"] = -665,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["Done"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5489,
["x"] = -681.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[5541] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
}, -- [13]
{
["Qpart"] = {
[313] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5645.9,
["x"] = -285.7,
},
["Range"] = 10,
["TT"] = {
["y"] = -5649.3,
["x"] = -283.3,
},
}, -- [14]
{
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Done"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -6015.4,
["x"] = -201.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["Qpart"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["Range"] = 91.12,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [16]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["level"] = 6,
["xp"] = 3000,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [17]
{
["ExtraLine"] = "Buy Rhapsody Malt off Innkeeper",
["Qpart"] = {
[384] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
}, -- [18]
{
["Done"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.1,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [19]
{
["PickUp"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5644.5,
["x"] = -499.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5470,
["x"] = -464.6,
},
["Range"] = 5.01,
["TT"] = {
["y"] = -5470,
["x"] = -464.6,
},
}, -- [21]
{
["PickUp"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.8,
["x"] = -455.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [22]
{
["Done"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [23]
{
["PickUp"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [24]
{
["Done"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5473.2,
["x"] = -641.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [25]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5625,
["x"] = -465.7,
},
["Range"] = 24.92,
["TT"] = {
["y"] = -5625,
["x"] = -465.7,
},
}, -- [26]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
["Range"] = 34.54,
["TT"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
}, -- [27]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
["Range"] = 21.06,
["TT"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
}, -- [28]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
["Range"] = 6.79,
["TT"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
}, -- [29]
{
["PickUp"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5571.4,
["x"] = 97.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [30]
{
["ExtraLine"] = "Let yeti patrol out before you loot chest",
["Qpart"] = {
[312] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
}, -- [31]
{
["Done"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5572.4,
["x"] = 96.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["Done"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["PickUp"] = {
319, -- [1]
315, -- [2]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
310, -- [1]
},
["TT"] = {
["y"] = -5373.1,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [35]
{
["CRange"] = 315,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
["Range"] = 28.93,
["TT"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
}, -- [36]
{
["Qpart"] = {
[315] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
["Range"] = 59.63,
["TT"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
}, -- [37]
{
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
315, -- [1]
},
["TT"] = {
["y"] = -5379.3,
["x"] = 314.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["Grind"] = 11951,
["Range"] = 81.44,
["Trigger"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
["level"] = 8,
["xp"] = 1,
["TT"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
}, -- [39]
{
["PickUp"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [40]
{
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["UseHS"] = 413,
["Zone"] = "1 (Dun Morogh)",
}, -- [41]
{
["ExtraLine"] = "Buy Thunder Ale from Innkeeper",
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["ItemID"] = 2686,
["Qid"] = 413,
["Trigger"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Ammount"] = 1,
["Range"] = 0.01,
["ExtraQpart"] = "Thunder Ale",
}, -- [42]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
["Range"] = 3.07,
["TT"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
}, -- [43]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5605,
["x"] = -549.4,
},
["Range"] = 4.24,
["TT"] = {
["y"] = -5605,
["x"] = -549.4,
},
}, -- [44]
{
["ExtraLine"] = "Click barren then give Ale to Jarven",
["Zone"] = "1 (Dun Morogh)",
["ExtraLine2"] = "then click Barrel again when he moved",
["PickUp"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5606.5,
["x"] = -547.4,
},
}, -- [45]
{
["Done"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5372.3,
["x"] = 314.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [46]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[287] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
["Range"] = 23.6,
["TT"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
}, -- [47]
{
["Qpart"] = {
[287] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
["Range"] = 29.86,
["TT"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
}, -- [48]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
["Range"] = 19.31,
["TT"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
}, -- [49]
{
["Qpart"] = {
[412] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
["Range"] = 54.66,
["TT"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
}, -- [50]
{
["Qpart"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5424,
["x"] = 462,
},
["Range"] = 112.58,
["TT"] = {
["y"] = -5424,
["x"] = 462,
},
}, -- [51]
{
["Done"] = {
319, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [52]
{
["PickUp"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [53]
{
["Done"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5645,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [54]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
["Range"] = 8.59,
["TT"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
}, -- [55]
{
["Done"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.4,
["x"] = -456.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [56]
{
["CRange"] = 320,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
["Range"] = 3.41,
["TT"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
}, -- [57]
{
["Done"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5466.5,
["x"] = -632.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [58]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5715.1,
["x"] = -1580.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [59]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.4,
["x"] = -1600.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [60]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
["Range"] = 35.44,
["TT"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
}, -- [61]
{
["CRange"] = 433,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
["Range"] = 15.11,
["TT"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
}, -- [62]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [63]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.6,
["x"] = -1600.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [64]
{
["PickUp"] = {
2218, -- [1]
},
["ExtraLine"] = "Get Class Quest",
["TT"] = {
["y"] = -5603.9,
["x"] = -540,
},
}, -- [1]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5251,
["x"] = -545.8,
},
["Range"] = 15.09,
["TT"] = {
["y"] = -5251,
["x"] = -545.8,
},
}, -- [2]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5180.4,
["x"] = -728.5,
},
["Range"] = 10.3,
["TT"] = {
["y"] = -5180.4,
["x"] = -728.5,
},
}, -- [3]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5055.5,
["x"] = -779.3,
},
["Range"] = 16.59,
["TT"] = {
["y"] = -5055.5,
["x"] = -779.3,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -4987.2,
["x"] = -889.5,
},
["Range"] = 11.17,
["CRange"] = 291,
["TT"] = {
["y"] = -4987.2,
["x"] = -889.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -5006.7,
["x"] = -927.8,
},
["Range"] = 12.7,
["CRange"] = 291,
["TT"] = {
["y"] = -5006.7,
["x"] = -927.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -4977.4,
["x"] = -964.8,
},
["Range"] = 10.11,
["CRange"] = 291,
["TT"] = {
["y"] = -4977.4,
["x"] = -964.8,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -4944.3,
["x"] = -1015,
},
["Range"] = 4.4,
["CRange"] = 291,
["TT"] = {
["y"] = -4944.3,
["x"] = -1015,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -4945.4,
["x"] = -1026.3,
},
["Range"] = 5.83,
["CRange"] = 291,
["TT"] = {
["y"] = -4945.4,
["x"] = -1026.3,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -4853.9,
["x"] = -1081.5,
},
["Range"] = 10.09,
["CRange"] = 291,
["TT"] = {
["y"] = -4853.9,
["x"] = -1081.5,
},
}, -- [6]
{
["Trigger"] = {
["y"] = -4835.4,
["x"] = -1083.1,
},
["Range"] = 8.24,
["CRange"] = 291,
["TT"] = {
["y"] = -4835.4,
["x"] = -1083.1,
},
}, -- [7]
{
["Trigger"] = {
["y"] = -4831.7,
["x"] = -1063.9,
},
["Range"] = 5.37,
["CRange"] = 291,
["TT"] = {
["y"] = -4831.7,
["x"] = -1063.9,
},
}, -- [8]
{
["TT"] = {
["y"] = -4872.4,
["x"] = -1025.8,
},
["Done"] = {
291, -- [1]
},
}, -- [10]
{
["Trigger"] = {
["y"] = -4831,
["x"] = -1067.5,
},
["Range"] = 9.03,
["CRange"] = 2218,
["TT"] = {
["y"] = -4831,
["x"] = -1067.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -4804.5,
["x"] = -1036.6,
},
["Range"] = 9.31,
["CRange"] = 2218,
["TT"] = {
["y"] = -4804.5,
["x"] = -1036.6,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -4742.5,
["x"] = -992.3,
},
["Range"] = 7.76,
["CRange"] = 2218,
["TT"] = {
["y"] = -4742.5,
["x"] = -992.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -4677.3,
["x"] = -984,
},
["Range"] = 12.98,
["CRange"] = 2218,
["TT"] = {
["y"] = -4677.3,
["x"] = -984,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -4636.9,
["x"] = -1025,
},
["Range"] = 9.91,
["CRange"] = 2218,
["TT"] = {
["y"] = -4636.9,
["x"] = -1025,
},
}, -- [5]
{
["Trigger"] = {
["y"] = -4628.4,
["x"] = -1128.6,
},
["Range"] = 7.12,
["CRange"] = 2218,
["TT"] = {
["y"] = -4628.4,
["x"] = -1128.6,
},
}, -- [6]
{
["TT"] = {
["y"] = -4647,
["x"] = -1123.5,
},
["Done"] = {
2218, -- [1]
},
}, -- [7]
{
["PickUp"] = {
2238, -- [1]
},
["TT"] = {
["y"] = -4647,
["x"] = -1123.1,
},
}, -- [8]
{
["ExtraLine"] = "See Weapon trainer if you have cash",
["ExtraLine2"] = "else press skip waypoint",
["CRange"] = 2238,
["Trigger"] = {
["y"] = -5041,
["x"] = -1197.4,
},
["Range"] = 2.67,
["TT"] = {
["y"] = -5041,
["x"] = -1197.4,
},
}, -- [1]
{
["SetHS"] = 2238,
["RaidIcon"] = 5111,
["TT"] = {
["y"] = -4840.9,
["x"] = -859,
},
}, -- [3]
{
["ExtraLine"] = "Time to go out of Ironforge",
["CRange"] = 2238,
["Trigger"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
["Range"] = 17.95,
["TT"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
}, -- [2]
{
["ExtraLine"] = "Up on spiral tower",
["Done"] = {
2238, -- [1]
},
["TT"] = {
["y"] = -5336.4,
["x"] = 563.1,
},
}, -- [1]
{
["PickUp"] = {
2239, -- [1]
},
["TT"] = {
["y"] = -5336.4,
["x"] = 563.4,
},
}, -- [2]
{
["UseHS"] = 2239,
["TT"] = {
["y"] = -5336.4,
["x"] = 563.4,
},
}, -- [3]
{
["TT"] = {
["y"] = -4646.9,
["x"] = -1124,
},
["Done"] = {
2239, -- [1]
},
}, -- [1]
{
["ExtraLine"] = "Time to go out of Ironforge",
["CRange"] = 433,
["Trigger"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
["Range"] = 17.95,
["TT"] = {
["y"] = -4981.2,
["x"] = -882.3,
},
}, -- [2]
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["SetHS"] = 416,
["TT"] = {
["y"] = -5378.5,
["x"] = -2973.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-6DwarfGnome-Warlock"] = {
{
["PickUp"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
},
{
["Qpart"] = {
[179] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 333.7,
["y"] = -6333.5,
},
["Range"] = 66.08,
["TT"] = {
["x"] = 333.8,
["y"] = -6333,
},
},
{
["Done"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["PickUp"] = {
233,
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["PickUp"] = {
1234567890,
},
["PickUpClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6214.9,
["x"] = 328.8,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["PickUp"] = {
170,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["CRange"] = 3115,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6164.8,
["x"] = 383.5,
},
["Range"] = 16.51,
["TT"] = {
["y"] = -6164.8,
["x"] = 383.5,
},
},
{
["Zone"] = "1 (Dun Morogh)",
["Done"] = {
3115,
},
["TT"] = {
["y"] = -6049.4,
["x"] = 391.2,
},
},
{
["PickUp"] = {
1599,
},
["Zone"] = "1 (Dun Morogh)",
["TT"] = {
["y"] = -6049.4,
["x"] = 391.2,
},
},
{
["CRange"] = 1599,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6500.5,
["x"] = 482.2,
},
["Range"] = 23.72,
["TT"] = {
["y"] = -6500.5,
["x"] = 482.2,
},
},
{
["Qpart"] = {
[1599] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6489.6,
["x"] = 308.9,
},
["Range"] = 105.99,
["TT"] = {
["y"] = -6489.6,
["x"] = 308.9,
},
},
{
["Zone"] = "1 (Dun Morogh)",
["Done"] = {
1599,
},
["TT"] = {
["y"] = -6049,
["x"] = 391.1,
},
},
{
["ExtraLine"] = "You might want to sell beforehand!",
["Qpart"] = {
[170] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
["Fillers"] = {
[170] = {
["2"] = "2",
},
},
["Range"] = 58.07,
["TT"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
}, -- [5]
{
["Qpart"] = {
[170] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
["Range"] = 28.22,
["TT"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
}, -- [6]
{
["Done"] = {
170,
},
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
["Range"] = 10.75,
["TT"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
}, -- [8]
{
["ExtraLine"] = "Train skills and sell",
["Done"] = {
1234567890,
},
["DoneClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6084.5,
["x"] = 382.5,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6084.5,
["x"] = 382.5,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6120.3,
["x"] = 382.6,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6091.5,
["x"] = 365.7,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6093.4,
["x"] = 405.3,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6093.4,
["x"] = 405.3,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6056.5,
["x"] = 394,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6055.9,
["x"] = 388.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6048.8,
["x"] = 390.3,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["ExtraLine"] = "Train skills and sell",
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["PickUp"] = {
3361,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["ExtraLine"] = "Train skills and sell",
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
["Range"] = 10.68,
["TT"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
}, -- [10]
{
["Done"] = {
233,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["PickUp"] = {
183,
234,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[183] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
["Range"] = 40.09,
["TT"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
}, -- [13]
{
["Done"] = {
183,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [14]
{
["Done"] = {
234,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["PickUp"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [16]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6370.4,
["x"] = 572.4,
},
}, -- [1]
{
["PickUp"] = {
3364,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [17]
{
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.77,
["TT"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
}, -- [18]
{
["ExtraLine"] = "Die now (shortcut) and revive at spirit healer",
["CRange"] = 3364,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
["Range"] = 3.94,
["TT"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
}, -- [19]
{
["Done"] = {
3364,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["PickUp"] = {
3365,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [21]
{
["ExtraLine"] = "Sell on the way out/learn skills",
["CRange"] = 3361,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
["Range"] = 12.41,
["TT"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
}, -- [22]
{
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
[3361] = {
["3"] = "3",
},
},
["Range"] = 3.01,
["TT"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
}, -- [23]
{
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 505.3,
["y"] = -6480,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.31,
["TT"] = {
["x"] = 505.3,
["y"] = -6480,
},
}, -- [24]
{
["Qpart"] = {
[182] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
["Range"] = 55.76,
["TT"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
}, -- [25]
{
["Done"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["PickUp"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [27]
{
["Done"] = {
3365,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [28]
{
["Trigger"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
["Range"] = 15.73,
["CRange"] = 218,
["TT"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
["Range"] = 11.81,
["CRange"] = 218,
["TT"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
}, -- [4]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
["Range"] = 8.7,
["TT"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
}, -- [29]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
["Range"] = 7.84,
["TT"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
}, -- [30]
{
["Qpart"] = {
[218] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
["Range"] = 0.14,
["TT"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
}, -- [31]
{
["Done"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["PickUp"] = {
282,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["Trigger"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
["Range"] = 15.56,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
}, -- [5]
{
["Done"] = {
3361,
},
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["ExtraLine"] = "Sell on your way out",
["CRange"] = 282,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
["Range"] = 9.94,
["TT"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
}, -- [35]
{
["Done"] = {
282,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [36]
{
["PickUp"] = {
420,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [37]
{
["PickUp"] = {
2160,
},
["TT"] = {
["x"] = 135,
["y"] = -6248.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
["Range"] = 9.92,
["TT"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
}, -- [1]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
["Range"] = 9.95,
["TT"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["Done"] = {
420, -- [1]
},
["TT"] = {
["y"] = -5644.4,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["UpdMapID"] = 1,
},
},
["6-12DwarfGnome-Warlock"] = {
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["ExtraLine"] = "Get First Aid / train abilitys",
["SetHS"] = 384,
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["PickUp"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5574.5,
["x"] = -464.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [8]
{
["PickUp"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.1,
["x"] = -632.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5472.6,
["x"] = -641.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["PickUp"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -5500.3,
["x"] = -665,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["Done"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5489,
["x"] = -681.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[5541] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
}, -- [13]
{
["Qpart"] = {
[313] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5645.9,
["x"] = -285.7,
},
["Range"] = 10,
["TT"] = {
["y"] = -5649.3,
["x"] = -283.3,
},
}, -- [14]
{
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Done"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -6015.4,
["x"] = -201.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["Qpart"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["Range"] = 91.12,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [16]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["level"] = 6,
["xp"] = 3000,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [17]
{
["ExtraLine"] = "Buy Rhapsody Malt off Innkeeper",
["Qpart"] = {
[384] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
}, -- [18]
{
["Done"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.1,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [19]
{
["PickUp"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5644.5,
["x"] = -499.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5470,
["x"] = -464.6,
},
["Range"] = 5.01,
["TT"] = {
["y"] = -5470,
["x"] = -464.6,
},
}, -- [21]
{
["PickUp"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.8,
["x"] = -455.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [22]
{
["Done"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [23]
{
["PickUp"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [24]
{
["Done"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5473.2,
["x"] = -641.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [25]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5625,
["x"] = -465.7,
},
["Range"] = 24.92,
["TT"] = {
["y"] = -5625,
["x"] = -465.7,
},
}, -- [26]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
["Range"] = 34.54,
["TT"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
}, -- [27]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
["Range"] = 21.06,
["TT"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
}, -- [28]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
["Range"] = 6.79,
["TT"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
}, -- [29]
{
["PickUp"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5571.4,
["x"] = 97.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [30]
{
["ExtraLine"] = "Let yeti patrol out before you loot chest",
["Qpart"] = {
[312] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
}, -- [31]
{
["Done"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5572.4,
["x"] = 96.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["Done"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["PickUp"] = {
319, -- [1]
315, -- [2]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
310, -- [1]
},
["TT"] = {
["y"] = -5373.1,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [35]
{
["CRange"] = 315,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
["Range"] = 28.93,
["TT"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
}, -- [36]
{
["Qpart"] = {
[315] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
["Range"] = 59.63,
["TT"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
}, -- [37]
{
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
315, -- [1]
},
["TT"] = {
["y"] = -5379.3,
["x"] = 314.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["Grind"] = 11951,
["Range"] = 81.44,
["Trigger"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
["level"] = 8,
["xp"] = 1,
["TT"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
}, -- [39]
{
["PickUp"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [40]
{
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["UseHS"] = 413,
["Zone"] = "1 (Dun Morogh)",
}, -- [41]
{
["ExtraLine"] = "Buy Thunder Ale from Innkeeper",
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["ItemID"] = 2686,
["Qid"] = 413,
["Trigger"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Ammount"] = 1,
["Range"] = 0.01,
["ExtraQpart"] = "Thunder Ale",
}, -- [42]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
["Range"] = 3.07,
["TT"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
}, -- [43]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5605,
["x"] = -549.4,
},
["Range"] = 4.24,
["TT"] = {
["y"] = -5605,
["x"] = -549.4,
},
}, -- [44]
{
["ExtraLine"] = "Click barren then give Ale to Jarven",
["Zone"] = "1 (Dun Morogh)",
["ExtraLine2"] = "then click Barrel again when he moved",
["PickUp"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5606.5,
["x"] = -547.4,
},
}, -- [45]
{
["Done"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5372.3,
["x"] = 314.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [46]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[287] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
["Range"] = 23.6,
["TT"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
}, -- [47]
{
["Qpart"] = {
[287] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
["Range"] = 29.86,
["TT"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
}, -- [48]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
["Range"] = 19.31,
["TT"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
}, -- [49]
{
["Qpart"] = {
[412] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
["Range"] = 54.66,
["TT"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
}, -- [50]
{
["Qpart"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5424,
["x"] = 462,
},
["Range"] = 112.58,
["TT"] = {
["y"] = -5424,
["x"] = 462,
},
}, -- [51]
{
["Done"] = {
319, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [52]
{
["PickUp"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [53]
{
["Done"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5645,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [54]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
["Range"] = 8.59,
["TT"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
}, -- [55]
{
["Done"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.4,
["x"] = -456.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [56]
{
["CRange"] = 320,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
["Range"] = 3.41,
["TT"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
}, -- [57]
{
["Done"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5466.5,
["x"] = -632.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [58]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5715.1,
["x"] = -1580.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [59]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.4,
["x"] = -1600.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [60]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
["Range"] = 35.44,
["TT"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
}, -- [61]
{
["CRange"] = 433,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
["Range"] = 15.11,
["TT"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
}, -- [62]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [63]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.6,
["x"] = -1600.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [64]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5251,
["x"] = -545.8,
},
["Range"] = 15.09,
["TT"] = {
["y"] = -5251,
["x"] = -545.8,
},
}, -- [2]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5180.4,
["x"] = -728.5,
},
["Range"] = 10.3,
["TT"] = {
["y"] = -5180.4,
["x"] = -728.5,
},
}, -- [3]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5055.5,
["x"] = -779.3,
},
["Range"] = 16.59,
["TT"] = {
["y"] = -5055.5,
["x"] = -779.3,
},
}, -- [4]
{
["ExtraLine"] = "See Weapon trainer if you have cash",
["ExtraLine2"] = "else press skip waypoint",
["CRange"] = 291,
["Trigger"] = {
["y"] = -5041,
["x"] = -1197.4,
},
["Range"] = 2.67,
["TT"] = {
["y"] = -5041,
["x"] = -1197.4,
},
}, -- [1]
{
["TT"] = {
["y"] = -4872.4,
["x"] = -1025.8,
},
["Done"] = {
291, -- [1]
},
}, -- [10]
{
["PickUp"] = {
1715, -- [1]
},
["TT"] = {
["y"] = -4618,
["x"] = -1089.5,
},
}, -- [1]
{
["ExtraLine"] = "go to Stormwind thru Tram",
["CRange"] = 1715,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8364.6,
["x"] = 535.9,
},
["Range"] = 62.73,
["TT"] = {
["y"] = -4839.4,
["x"] = -1318.6,
},
},
{
["Trigger"] = {
["y"] = -8941.8,
["x"] = 988.1,
},
["Range"] = 9.06,
["CRange"] = 1715,
["TT"] = {
["y"] = -8941.8,
["x"] = 988.1,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -8962.8,
["x"] = 1011.7,
},
["Range"] = 4.95,
["CRange"] = 1715,
["TT"] = {
["y"] = -8962.8,
["x"] = 1011.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -8978.5,
["x"] = 1017.2,
},
["Range"] = 5.17,
["CRange"] = 1715,
["TT"] = {
["y"] = -8978.5,
["x"] = 1017.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -8970,
["x"] = 1021.2,
},
["Range"] = 7.23,
["CRange"] = 1715,
["TT"] = {
["y"] = -8970,
["x"] = 1021.2,
},
}, -- [4]
{
["TT"] = {
["y"] = -8982.5,
["x"] = 1041.5,
},
["Done"] = {
1715, -- [1]
},
}, -- [5]
{
["PickUp"] = {
1688, -- [1]
},
["TT"] = {
["y"] = -8982.5,
["x"] = 1042,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -8904.3,
["x"] = 791.7,
},
["Range"] = 7.79,
["CRange"] = 1688,
["TT"] = {
["y"] = -8904.3,
["x"] = 791.7,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -8881,
["x"] = 761.2,
},
["Range"] = 7.37,
["CRange"] = 1688,
["TT"] = {
["y"] = -8881,
["x"] = 761.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -8827.2,
["x"] = 682,
},
["Range"] = 7.2,
["CRange"] = 1688,
["TT"] = {
["y"] = -8827.2,
["x"] = 682,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -8844.8,
["x"] = 662.2,
},
["Range"] = 7.48,
["CRange"] = 1688,
["TT"] = {
["y"] = -8844.8,
["x"] = 662.2,
},
}, -- [5]
{
["ExtraLine"] = "Visit weapon Trainer if you have gold",
["CRange"] = 1688,
["Trigger"] = {
["y"] = -8794.2,
["x"] = 612.6,
},
["Range"] = 2.07,
["TT"] = {
["y"] = -8794.2,
["x"] = 612.6,
},
}, -- [6]
{
["Trigger"] = {
["y"] = -8864.7,
["x"] = 533.4,
},
["Range"] = 5.97,
["CRange"] = 1688,
["TT"] = {
["y"] = -8864.7,
["x"] = 533.4,
},
}, -- [7]
{
["Trigger"] = {
["y"] = -8835.3,
["x"] = 490.3,
},
["GetFP"] = 1688,
["Range"] = 0.69,
["TT"] = {
["y"] = -8835.3,
["x"] = 490.3,
},
}, -- [8]
{
["ExtraLine"] = "Exit Stormwind",
["CRange"] = 1688,
["Trigger"] = {
["y"] = -9038.5,
["x"] = 439.7,
},
["Range"] = 16.17,
["TT"] = {
["y"] = -9038.5,
["x"] = 439.7,
},
}, -- [9]
{
["Trigger"] = {
["y"] = -9086.3,
["x"] = 400.3,
},
["Range"] = 12.45,
["CRange"] = 1688,
["TT"] = {
["y"] = -9086.3,
["x"] = 400.3,
},
}, -- [1]
{
["Qpart"] = {
[1688] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -9805,
["x"] = -928.5,
},
["Range"] = 0.01,
["TT"] = {
["y"] = -9805,
["x"] = -928.5,
},
}, -- [96]
{
["ExtraLine"] = "Back to Stormwind",
["CRange"] = 1688,
["Trigger"] = {
["y"] = -9095,
["x"] = 405.2,
},
["Range"] = 21.4,
["TT"] = {
["y"] = -9095,
["x"] = 405.2,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -8895.3,
["x"] = 572.6,
},
["Range"] = 13.64,
["CRange"] = 1688,
["TT"] = {
["y"] = -8895.3,
["x"] = 572.6,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -8841,
["x"] = 621,
},
["Range"] = 12.25,
["CRange"] = 1688,
["TT"] = {
["y"] = -8841,
["x"] = 621,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -8941,
["x"] = 986.2,
},
["Range"] = 9.26,
["CRange"] = 1688,
["TT"] = {
["y"] = -8941,
["x"] = 986.2,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -8968.8,
["x"] = 1018,
},
["Range"] = 5.45,
["CRange"] = 1688,
["TT"] = {
["y"] = -8968.8,
["x"] = 1018,
},
}, -- [4]
{
["TT"] = {
["y"] = -8982.8,
["x"] = 1041.5,
},
["Done"] = {
1688, -- [1]
},
}, -- [5]
{
["PickUp"] = {
1689, -- [1]
},
["TT"] = {
["y"] = -8982.8,
["x"] = 1041.9,
},
}, -- [6]
{
["Trigger"] = {
["y"] = -8991,
["x"] = 1046.5,
},
["Range"] = 6.96,
["CRange"] = 1689,
["TT"] = {
["y"] = -8991,
["x"] = 1046.5,
},
}, -- [1]
{
["Trigger"] = {
["y"] = -8999.8,
["x"] = 1038.8,
},
["Range"] = 2.83,
["CRange"] = 1689,
["TT"] = {
["y"] = -8999.8,
["x"] = 1038.8,
},
}, -- [2]
{
["Trigger"] = {
["y"] = -8988.8,
["x"] = 1043.8,
},
["Range"] = 4,
["CRange"] = 1689,
["TT"] = {
["y"] = -8988.8,
["x"] = 1043.8,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -9001.5,
["x"] = 1061.5,
},
["Range"] = 5.24,
["CRange"] = 1689,
["TT"] = {
["y"] = -9001.5,
["x"] = 1061.5,
},
}, -- [4]
{
["Trigger"] = {
["y"] = -8992.2,
["x"] = 1069.5,
},
["Range"] = 6.12,
["CRange"] = 1689,
["TT"] = {
["y"] = -8992.2,
["x"] = 1069.5,
},
}, -- [5]
{
["CRange"] = 1689,
["Trigger"] = {
["y"] = -8983.2,
["x"] = 1058.9,
},
["Range"] = 5.42,
["TT"] = {
["y"] = -8983.2,
["x"] = 1058.9,
},
}, -- [7]
{
["Trigger"] = {
["y"] = -8998.5,
["x"] = 1042.3,
},
["Range"] = 5.29,
["CRange"] = 1689,
["TT"] = {
["y"] = -8998.5,
["x"] = 1042.3,
},
}, -- [8]
{
["Trigger"] = {
["y"] = -8990,
["x"] = 1028.5,
},
["Range"] = 4.87,
["CRange"] = 1689,
["TT"] = {
["y"] = -8990,
["x"] = 1028.5,
},
}, -- [9]
{
["Qpart"] = {
[1689] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -8972,
["x"] = 1044,
},
["Range"] = 0.01,
["TT"] = {
["y"] = -8972,
["x"] = 1044,
},
}, -- [96]
{
["TT"] = {
["y"] = -8982.8,
["x"] = 1041.5,
},
["Done"] = {
1689, -- [1]
},
}, -- [5]
{
["UseHS"] = 413,
["TT"] = {
["y"] = -8982.8,
["x"] = 1041.5,
},
}, -- [11]
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["SetHS"] = 416,
["TT"] = {
["y"] = -5378.5,
["x"] = -2973.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
["1-6DwarfGnome-Warrior"] = {
{
["PickUp"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
},
{
["Qpart"] = {
[179] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 333.7,
["y"] = -6333.5,
},
["Range"] = 66.08,
["TT"] = {
["x"] = 333.8,
["y"] = -6333,
},
},
{
["Done"] = {
179,
},
["TT"] = {
["x"] = 328.1,
["y"] = -6214.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["PickUp"] = {
233,
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["PickUp"] = {
1234567890,
},
["PickUpClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6214.9,
["x"] = 328.8,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6214.9,
["x"] = 328.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6214.9,
["x"] = 328.8,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["PickUp"] = {
170,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["ExtraLine"] = "You might want to sell beforehand!",
["Qpart"] = {
[170] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
["Fillers"] = {
[170] = {
["2"] = "2",
},
},
["Range"] = 58.07,
["TT"] = {
["x"] = 262.9,
["y"] = -6371.4,
},
}, -- [5]
{
["Qpart"] = {
[170] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
["Range"] = 28.22,
["TT"] = {
["x"] = 474.7,
["y"] = -6259.4,
},
}, -- [6]
{
["Done"] = {
170,
},
["TT"] = {
["x"] = 339,
["y"] = -6216.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
["Range"] = 10.75,
["TT"] = {
["x"] = 379.4,
["y"] = -6167.3,
},
}, -- [8]
{
["ExtraLine"] = "Train skills and sell",
["Done"] = {
1234567890,
},
["DoneClass"] = {
[1] = {
["Dwarf"] = {
["Qid"] = 3106,
["y"] = -6084.5,
["x"] = 382.5,
},
["Gnome"] = {
["Qid"] = 3112,
["y"] = -6084.5,
["x"] = 382.5,
},
},
[2] = {
["Dwarf"] = {
["Qid"] = 3107,
["y"] = -6120.3,
["x"] = 382.6,
},
},
[3] = {
["Dwarf"] = {
["Qid"] = 3108,
["y"] = -6091.5,
["x"] = 365.7,
},
},
[4] = {
["Dwarf"] = {
["Qid"] = 3109,
["y"] = -6093.4,
["x"] = 405.3,
},
["Gnome"] = {
["Qid"] = 3113,
["y"] = -6093.4,
["x"] = 405.3,
},
},
[5] = {
["Dwarf"] = {
["Qid"] = 3110,
["y"] = -6056.5,
["x"] = 394,
},
},
[6] = {
},
[7] = {
},
[8] = {
["Gnome"] = {
["Qid"] = 3114,
["y"] = -6055.9,
["x"] = 388.8,
},
},
[9] = {
["Gnome"] = {
["Qid"] = 3115,
["y"] = -6048.8,
["x"] = 390.3,
},
},
},
["TT"] = {
["y"] = -6214.9,
["x"] = 328.8,
},
}, -- [7]
{
["ExtraLine"] = "Train skills and sell",
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["PickUp"] = {
3361,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["ExtraLine"] = "Train skills and sell",
["CRange"] = 233,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
["Range"] = 10.68,
["TT"] = {
["x"] = 388.2,
["y"] = -6166.3,
},
}, -- [10]
{
["Done"] = {
233,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["PickUp"] = {
183,
234,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[183] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
["Range"] = 40.09,
["TT"] = {
["x"] = 746.8,
["y"] = -6217.3,
},
}, -- [13]
{
["Done"] = {
183,
},
["TT"] = {
["x"] = 688.9,
["y"] = -6222.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [14]
{
["Done"] = {
234,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["PickUp"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [16]
{
["PickUp"] = {
3361, -- [1]
},
["TT"] = {
["y"] = -6370.4,
["x"] = 572.4,
},
}, -- [1]
{
["PickUp"] = {
3364,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [17]
{
["Qpart"] = {
[3361] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.77,
["TT"] = {
["x"] = 773.6,
["y"] = -6374.7,
},
}, -- [18]
{
["ExtraLine"] = "Die now (shortcut) and revive at spirit healer",
["CRange"] = 3364,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
["Range"] = 3.94,
["TT"] = {
["x"] = 378.8,
["y"] = -6168.8,
},
}, -- [19]
{
["Done"] = {
3364,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["PickUp"] = {
3365,
},
["TT"] = {
["x"] = 385.2,
["y"] = -6056.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [21]
{
["ExtraLine"] = "Sell on the way out/learn skills",
["CRange"] = 3361,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
["Range"] = 12.41,
["TT"] = {
["x"] = 386.7,
["y"] = -6168.9,
},
}, -- [22]
{
["Qpart"] = {
[3361] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
[3361] = {
["3"] = "3",
},
},
["Range"] = 3.01,
["TT"] = {
["x"] = 680.4,
["y"] = -6504.2,
},
}, -- [23]
{
["Qpart"] = {
[3361] = {
["3"] = "3",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 505.3,
["y"] = -6480,
},
["Fillers"] = {
[182] = {
["1"] = "1",
},
},
["Range"] = 1.31,
["TT"] = {
["x"] = 505.3,
["y"] = -6480,
},
}, -- [24]
{
["Qpart"] = {
[182] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
["Range"] = 55.76,
["TT"] = {
["x"] = 488.4,
["y"] = -6482.9,
},
}, -- [25]
{
["Done"] = {
182,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [26]
{
["PickUp"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [27]
{
["Done"] = {
3365,
},
["TT"] = {
["x"] = 571.8,
["y"] = -6371.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [28]
{
["Trigger"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
["Range"] = 15.73,
["CRange"] = 218,
["TT"] = {
["y"] = -6495.9,
["x"] = 484.3,
},
}, -- [3]
{
["Trigger"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
["Range"] = 11.81,
["CRange"] = 218,
["TT"] = {
["y"] = -6532.4,
["x"] = 463.6,
},
}, -- [4]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
["Range"] = 8.7,
["TT"] = {
["x"] = 414.1,
["y"] = -6505.5,
},
}, -- [29]
{
["CRange"] = 218,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
["Range"] = 7.84,
["TT"] = {
["x"] = 369.9,
["y"] = -6466.4,
},
}, -- [30]
{
["Qpart"] = {
[218] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
["Range"] = 0.14,
["TT"] = {
["x"] = 300.7,
["y"] = -6508.9,
},
}, -- [31]
{
["Done"] = {
218,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["PickUp"] = {
282,
},
["TT"] = {
["x"] = 567,
["y"] = -6363,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["Trigger"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
["Range"] = 15.56,
["CRange"] = 3361,
["TT"] = {
["y"] = -6167.5,
["x"] = 386.2,
},
}, -- [5]
{
["Done"] = {
3361,
},
["TT"] = {
["x"] = 396,
["y"] = -6098.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["ExtraLine"] = "Sell on your way out",
["CRange"] = 282,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
["Range"] = 9.94,
["TT"] = {
["x"] = 379.8,
["y"] = -6167.1,
},
}, -- [35]
{
["Done"] = {
282,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [36]
{
["PickUp"] = {
420,
},
["TT"] = {
["x"] = 152.9,
["y"] = -6235.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [37]
{
["PickUp"] = {
2160,
},
["TT"] = {
["x"] = 135,
["y"] = -6248.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
["Range"] = 9.92,
["TT"] = {
["y"] = -6225.5,
["x"] = 120.7,
},
}, -- [1]
{
["CRange"] = 2160,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
["Range"] = 9.95,
["TT"] = {
["y"] = -6040.9,
["x"] = 45.8,
},
}, -- [2]
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["Done"] = {
420, -- [1]
},
["TT"] = {
["y"] = -5644.4,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [4]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["UpdMapID"] = 1,
},
},
["6-12DwarfGnome-Warrior"] = {
{
["TT"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5855.3,
["x"] = -145.7,
},
["level"] = 6,
["Range"] = 50.15,
["Grind"] = 11951,
}, -- [3]
{
["PickUp"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.7,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["Done"] = {
2160, -- [1]
},
["TT"] = {
["y"] = -5590.1,
["x"] = -523.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [6]
{
["ExtraLine"] = "Get First Aid / train abilitys",
["SetHS"] = 384,
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [7]
{
["PickUp"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5574.5,
["x"] = -464.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [8]
{
["PickUp"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.1,
["x"] = -632.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5472.6,
["x"] = -641.9,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["PickUp"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -5500.3,
["x"] = -665,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [11]
{
["Done"] = {
400, -- [1]
},
["TT"] = {
["y"] = -5489,
["x"] = -681.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [12]
{
["Qpart"] = {
[5541] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5747.1,
["x"] = -371.4,
},
}, -- [13]
{
["Qpart"] = {
[313] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5645.9,
["x"] = -285.7,
},
["Range"] = 10,
["TT"] = {
["y"] = -5649.3,
["x"] = -283.3,
},
}, -- [14]
{
["Fillers"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Done"] = {
5541, -- [1]
},
["TT"] = {
["y"] = -6015.4,
["x"] = -201.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [15]
{
["Qpart"] = {
[317] = {
["1"] = "1",
["2"] = "2",
},
[384] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["Range"] = 91.12,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [16]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
["level"] = 6,
["xp"] = 3000,
["TT"] = {
["y"] = -5819.8,
["x"] = -238.4,
},
}, -- [17]
{
["ExtraLine"] = "Buy Rhapsody Malt off Innkeeper",
["Qpart"] = {
[384] = {
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -5601.6,
["x"] = -531.1,
},
}, -- [18]
{
["Done"] = {
384, -- [1]
},
["TT"] = {
["y"] = -5596.1,
["x"] = -504.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [19]
{
["PickUp"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5644.5,
["x"] = -499.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [20]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5470,
["x"] = -464.6,
},
["Range"] = 5.01,
["TT"] = {
["y"] = -5470,
["x"] = -464.6,
},
}, -- [21]
{
["PickUp"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.8,
["x"] = -455.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [22]
{
["Done"] = {
317, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [23]
{
["PickUp"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5466.2,
["x"] = -632.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [24]
{
["Done"] = {
313, -- [1]
},
["TT"] = {
["y"] = -5473.2,
["x"] = -641.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [25]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5625,
["x"] = -465.7,
},
["Range"] = 24.92,
["TT"] = {
["y"] = -5625,
["x"] = -465.7,
},
}, -- [26]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
["Range"] = 34.54,
["TT"] = {
["y"] = -5855.3,
["x"] = 29.7,
},
}, -- [27]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
["Range"] = 21.06,
["TT"] = {
["y"] = -5736.3,
["x"] = 92.1,
},
}, -- [28]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
["Range"] = 6.79,
["TT"] = {
["y"] = -5606.5,
["x"] = 0.4,
},
}, -- [29]
{
["PickUp"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5571.4,
["x"] = 97.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [30]
{
["ExtraLine"] = "Let yeti patrol out before you loot chest",
["Qpart"] = {
[312] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -5647.6,
["x"] = -94.9,
},
}, -- [31]
{
["Done"] = {
312, -- [1]
},
["TT"] = {
["y"] = -5572.4,
["x"] = 96.5,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [32]
{
["Done"] = {
318, -- [1]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [33]
{
["PickUp"] = {
319, -- [1]
315, -- [2]
},
["TT"] = {
["y"] = -5378.3,
["x"] = 315.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [34]
{
["PickUp"] = {
310, -- [1]
},
["TT"] = {
["y"] = -5373.1,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [35]
{
["CRange"] = 315,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
["Range"] = 28.93,
["TT"] = {
["y"] = -5259.1,
["x"] = -84.1,
},
}, -- [36]
{
["Qpart"] = {
[315] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
["Range"] = 59.63,
["TT"] = {
["y"] = -5284.8,
["x"] = -183.5,
},
}, -- [37]
{
["Fillers"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
315, -- [1]
},
["TT"] = {
["y"] = -5379.3,
["x"] = 314.6,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [38]
{
["Grind"] = 11951,
["Range"] = 81.44,
["Trigger"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
["level"] = 8,
["xp"] = 1,
["TT"] = {
["y"] = -5288.1,
["x"] = 366.6,
},
}, -- [39]
{
["PickUp"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [40]
{
["TT"] = {
["y"] = -5378.7,
["x"] = 315.1,
},
["UseHS"] = 413,
["Zone"] = "1 (Dun Morogh)",
}, -- [41]
{
["ExtraLine"] = "Buy Thunder Ale from Innkeeper",
["TT"] = {
["y"] = -5601.7,
["x"] = -531,
},
["ItemID"] = 2686,
["Qid"] = 413,
["Trigger"] = {
["y"] = -5601.7,
["x"] = -531,
},
["Ammount"] = 1,
["Range"] = 0.01,
["ExtraQpart"] = "Thunder Ale",
}, -- [42]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
["Range"] = 3.07,
["TT"] = {
["y"] = -5597.7,
["x"] = -538.7,
},
}, -- [43]
{
["ExtraLine"] = "go down to basement",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5605,
["x"] = -549.4,
},
["Range"] = 4.24,
["TT"] = {
["y"] = -5605,
["x"] = -549.4,
},
}, -- [44]
{
["ExtraLine"] = "Click barren then give Ale to Jarven",
["Zone"] = "1 (Dun Morogh)",
["ExtraLine2"] = "then click Barrel again when he moved",
["PickUp"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5606.5,
["x"] = -547.4,
},
}, -- [45]
{
["Done"] = {
311, -- [1]
},
["TT"] = {
["y"] = -5372.3,
["x"] = 314.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [46]
{
["CRange"] = 287,
["Zone"] = "1 (Dun Morogh)",
["Fillers"] = {
[287] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
["Range"] = 23.6,
["TT"] = {
["y"] = -5547.6,
["x"] = 592.2,
},
}, -- [47]
{
["Qpart"] = {
[287] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
["Range"] = 29.86,
["TT"] = {
["y"] = -5573.2,
["x"] = 755.6,
},
}, -- [48]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
["Range"] = 19.31,
["TT"] = {
["y"] = -5548.4,
["x"] = 564.4,
},
}, -- [49]
{
["Qpart"] = {
[412] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
["Range"] = 54.66,
["TT"] = {
["y"] = -5267.6,
["x"] = 522.7,
},
}, -- [50]
{
["Qpart"] = {
[319] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5424,
["x"] = 462,
},
["Range"] = 112.58,
["TT"] = {
["y"] = -5424,
["x"] = 462,
},
}, -- [51]
{
["Done"] = {
319, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [52]
{
["PickUp"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5378.6,
["x"] = 315.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [53]
{
["Done"] = {
287, -- [1]
},
["TT"] = {
["y"] = -5645,
["x"] = -499.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [54]
{
["CRange"] = 412,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
["Range"] = 8.59,
["TT"] = {
["y"] = -5471.5,
["x"] = -465.3,
},
}, -- [55]
{
["Done"] = {
412, -- [1]
},
["TT"] = {
["y"] = -5497.4,
["x"] = -456.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [56]
{
["CRange"] = 320,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
["Range"] = 3.41,
["TT"] = {
["y"] = -5496.6,
["x"] = -455.5,
},
}, -- [57]
{
["Done"] = {
320, -- [1]
},
["TT"] = {
["y"] = -5466.5,
["x"] = -632.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [58]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5715.1,
["x"] = -1580.2,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [59]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.4,
["x"] = -1600.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [60]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
["Range"] = 35.44,
["TT"] = {
["y"] = -5738.9,
["x"] = -1672.9,
},
}, -- [61]
{
["CRange"] = 433,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
["Range"] = 15.11,
["TT"] = {
["y"] = -5774.6,
["x"] = -1545.1,
},
}, -- [62]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [63]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.6,
["x"] = -1600.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [64]
{
["PickUp"] = {
1679, -- [1]
},
["TT"] = {
["y"] = -5605.8,
["x"] = -530.5,
},
["ExtraLine"] = "Hearthstone or run",
["Zone"] = "1 (Dun Morogh)",
}, -- [65]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 1679,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5251,
["x"] = -536.1,
},
["Range"] = 18.43,
["TT"] = {
["y"] = -5251,
["x"] = -536.1,
},
}, -- [66]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 1679,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5024.1,
["x"] = -830.7,
},
["Range"] = 13.19,
["TT"] = {
["y"] = -5024.1,
["x"] = -830.7,
},
}, -- [67]
{
["CRange"] = 1679,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4944.3,
["x"] = -1015.1,
},
["Range"] = 4.82,
["TT"] = {
["y"] = -4944.3,
["x"] = -1015.1,
},
}, -- [68]
{
["CRange"] = 1679,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4936.2,
["x"] = -1032.9,
},
["Range"] = 11.18,
["TT"] = {
["y"] = -4936.2,
["x"] = -1032.9,
},
}, -- [69]
{
["Done"] = {
291, -- [1]
},
["TT"] = {
["y"] = -4872.4,
["x"] = -1026.2,
},
["Zone"] = "1537 (Ironforge)",
}, -- [70]
{
["Done"] = {
1679, -- [1]
},
["TT"] = {
["y"] = -5045.6,
["x"] = -1273.1,
},
["Zone"] = "1537 (Ironforge)",
}, -- [71]
{
["PickUp"] = {
1678, -- [1]
},
["TT"] = {
["y"] = -5045.6,
["x"] = -1273.1,
},
["Zone"] = "1537 (Ironforge)",
}, -- [72]
{
["CRange"] = 1678,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4994.4,
["x"] = -1222,
},
["Range"] = 9.23,
["TT"] = {
["y"] = -4994.4,
["x"] = -1222,
},
}, -- [73]
{
["CRange"] = 1678,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5017.7,
["x"] = -1199.6,
},
["Range"] = 4.25,
["TT"] = {
["y"] = -5017.7,
["x"] = -1199.6,
},
}, -- [74]
{
["ExtraLine"] = "Weapons Master",
["CRange"] = 1678,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.7,
["x"] = -1197.4,
},
["Range"] = 2.66,
["TT"] = {
["y"] = -5041.7,
["x"] = -1197.4,
},
}, -- [75]
{
["ExtraLine"] = "Exit Ironforge",
["CRange"] = 1678,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4989.5,
["x"] = -957.2,
},
["Range"] = 18.84,
["TT"] = {
["y"] = -4989.5,
["x"] = -957.2,
},
}, -- [76]
{
["CRange"] = 1678,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5024.8,
["x"] = -828.4,
},
["Range"] = 11.19,
["TT"] = {
["y"] = -5024.8,
["x"] = -828.4,
},
}, -- [77]
{
["ExtraLine"] = "Time to do Class quest",
["CRange"] = 1678,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5400.9,
["x"] = -346,
},
["Range"] = 47.33,
["TT"] = {
["y"] = -5400.9,
["x"] = -346,
},
}, -- [78]
{
["CRange"] = 1678,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5714.4,
["x"] = 86.1,
},
["Range"] = 30.27,
["TT"] = {
["y"] = -5714.4,
["x"] = 86.1,
},
}, -- [79]
{
["CRange"] = 1678,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5802.6,
["x"] = 319.3,
},
["Range"] = 13,
["TT"] = {
["y"] = -5802.6,
["x"] = 319.3,
},
}, -- [80]
{
["CRange"] = 1678,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5826.5,
["x"] = 342.5,
},
["Range"] = 6.58,
["TT"] = {
["y"] = -5826.5,
["x"] = 342.5,
},
}, -- [81]
{
["Qpart"] = {
[1678] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5779.5,
["x"] = 432,
},
["Range"] = 0.14,
["TT"] = {
["y"] = -5779.5,
["x"] = 432,
},
}, -- [82]
{
["ExtraLine"] = "Go back to Ironforge",
["CRange"] = 1678,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5019.6,
["x"] = -835.8,
},
["Range"] = 31.6,
["TT"] = {
["y"] = -5019.6,
["x"] = -835.8,
},
}, -- [83]
{
["Done"] = {
1678, -- [1]
},
["TT"] = {
["y"] = -5045.8,
["x"] = -1273.2,
},
["Zone"] = "1537 (Ironforge)",
}, -- [84]
{
["PickUp"] = {
1680, -- [1]
},
["TT"] = {
["y"] = -5045.8,
["x"] = -1273.2,
},
["Zone"] = "1537 (Ironforge)",
}, -- [85]
{
["Done"] = {
1680, -- [1]
},
["TT"] = {
["y"] = -4793.3,
["x"] = -1098.2,
},
["Zone"] = "1537 (Ironforge)",
}, -- [86]
{
["PickUp"] = {
1681, -- [1]
},
["TT"] = {
["y"] = -4793.3,
["x"] = -1098.2,
},
["Zone"] = "1537 (Ironforge)",
}, -- [87]
{
["ExtraLine"] = "exit Ironforge",
["CRange"] = 1681,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5019.7,
["x"] = -836.1,
},
["Range"] = 17.1,
["TT"] = {
["y"] = -5019.7,
["x"] = -836.1,
},
}, -- [88]
{
["Qpart"] = {
[1681] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5918.4,
["x"] = -2037.3,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -5918.4,
["x"] = -2037.3,
},
}, -- [89]
{
["ExtraLine"] = "Die and spirit rez and run to Ironforge",
["CRange"] = 1681,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5021.5,
["x"] = -831.2,
},
["Range"] = 18.34,
["TT"] = {
["y"] = -5021.5,
["x"] = -831.2,
},
}, -- [90]
{
["CRange"] = 1681,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4974.6,
["x"] = -887.4,
},
["Range"] = 22.92,
["TT"] = {
["y"] = -4974.6,
["x"] = -887.4,
},
}, -- [91]
{
["Done"] = {
1681, -- [1]
},
["TT"] = {
["y"] = -4793.6,
["x"] = -1098.1,
},
["Zone"] = "1537 (Ironforge)",
}, -- [92]
{
["Done"] = {
1682, -- [1]
},
["TT"] = {
["y"] = -4794.4,
["x"] = -1097.8,
},
["Zone"] = "1537 (Ironforge)",
}, -- [93]
{
["ExtraLine"] = "exit Ironforge",
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5017.5,
["x"] = -840,
},
["Range"] = 15.13,
["TT"] = {
["y"] = -5017.5,
["x"] = -840,
},
}, -- [94]
{
["PickUp"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329.3,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [1]
{
["Done"] = {
419, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [2]
{
["PickUp"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5065.6,
["x"] = -2122.4,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [3]
{
["Qpart"] = {
[417] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -5117.8,
["x"] = -2054.4,
},
}, -- [4]
{
["Done"] = {
417, -- [1]
},
["TT"] = {
["y"] = -5163.9,
["x"] = -2329,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [5]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5281,
["x"] = -2195.9,
},
["Range"] = 25.57,
["TT"] = {
["y"] = -5281,
["x"] = -2195.9,
},
}, -- [6]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
["Range"] = 43.25,
["TT"] = {
["y"] = -5565.1,
["x"] = -2082.9,
},
}, -- [7]
{
["CRange"] = 413,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
["Range"] = 20.99,
["TT"] = {
["y"] = -5631.8,
["x"] = -2247.8,
},
}, -- [8]
{
["Done"] = {
413, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [9]
{
["PickUp"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5479.7,
["x"] = -2446.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [10]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
["Range"] = 10.45,
["TT"] = {
["y"] = -5561.7,
["x"] = -2444.3,
},
}, -- [11]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
["Range"] = 18.37,
["TT"] = {
["y"] = -5644.6,
["x"] = -2537.2,
},
}, -- [12]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.4,
["x"] = -2601.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [13]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
["Range"] = 7.23,
["TT"] = {
["y"] = -5887.4,
["x"] = -2640.3,
},
}, -- [14]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.2,
["x"] = -2634.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
["Range"] = 13.13,
["TT"] = {
["y"] = -5784.2,
["x"] = -2633.9,
},
}, -- [16]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
["Range"] = 18.41,
["TT"] = {
["y"] = -5710.9,
["x"] = -2791.1,
},
}, -- [17]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
["Range"] = 74.25,
["TT"] = {
["y"] = -5833.3,
["x"] = -2882.3,
},
}, -- [18]
{
["CRange"] = 267,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5704,
["x"] = -2774.7,
},
["Range"] = 19.67,
["TT"] = {
["y"] = -5704,
["x"] = -2774.7,
},
}, -- [19]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.2,
["x"] = -2602.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843.2,
["x"] = -2634.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [21]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
["Range"] = 17.12,
["TT"] = {
["y"] = -5785.6,
["x"] = -2630.4,
},
}, -- [22]
{
["CRange"] = 414,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
["Range"] = 40.13,
["TT"] = {
["y"] = -5675.6,
["x"] = -2767.8,
},
}, -- [23]
{
["ExtraLine"] = "He is patroling",
["Done"] = {
414, -- [1]
},
["TT"] = {
["y"] = -5351.1,
["x"] = -2963.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -5351.6,
["x"] = -2956.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["SetHS"] = 416,
["TT"] = {
["y"] = -5378.5,
["x"] = -2973.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
---------------------------------- Dwarf and Gnome Ends ---------------------
---------------------------------- Human Starts ---------------------
["1-5Human-Mage"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8933.9,
["x"] = -136.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [1]
{
["Done"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [2]
{
["PickUp"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [3]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8933.6,
["x"] = -136.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [4]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
["Range"] = 8.05,
["TT"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
}, -- [5]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
["Range"] = 8.09,
["TT"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
}, -- [6]
{
["Done"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [7]
{
["PickUp"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [8]
{
["Qpart"] = {
[7] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
["Fillers"] = {
[33] = {
["1"] = "1",
},
},
["Range"] = 28.22,
["TT"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
}, -- [9]
{
["Qpart"] = {
[33] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
["Range"] = 35.45,
["TT"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
}, -- [10]
{
["Done"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8868.7,
["x"] = -163.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [11]
{
["CRange"] = 7,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
["Range"] = 8.54,
["TT"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
}, -- [12]
{
["Done"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [13]
{
["PickUp"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [14]
{
["PickUp"] = {
3104,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -8902.9,
["x"] = -162.4,
},
},
{
["ExtraLine"] = "Upstairs",
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
3104,
},
["TT"] = {
["y"] = -8851.8,
["x"] = -188.3,
},
},
{
["ExtraLine"] = "Train Abilitys and sell",
["TT"] = {
["y"] = -8933,
["x"] = -136.6,
},
["PickUp"] = {
18, -- [1]
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [17]
{
["Qpart"] = {
[18] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9039.9,
["x"] = -322.4,
},
["Range"] = 28.16,
["TT"] = {
["y"] = -9037.8,
["x"] = -320.6,
},
}, -- [18]
{
["Qpart"] = {
[15] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
["Range"] = 40.62,
["TT"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
}, -- [19]
{
["ExtraLine"] = "Sell",
["Done"] = {
18, -- [1]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [20]
{
["PickUp"] = {
3903, -- [1]
6, -- [2]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [21]
{
["Done"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [22]
{
["PickUp"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [23]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
["Range"] = 8.58,
["TT"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
}, -- [24]
{
["Qpart"] = {
[21] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
["Range"] = 13.68,
["TT"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
}, -- [25]
{
["Done"] = {
3903, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [26]
{
["PickUp"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [27]
{
["Qpart"] = {
[6] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
["Fillers"] = {
[3904] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
}, -- [28]
{
["Qpart"] = {
[3904] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
["Range"] = 39.95,
["TT"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
}, -- [29]
{
["Done"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [30]
{
["PickUp"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [31]
{
["Done"] = {
6, -- [1]
},
["TT"] = {
["y"] = -8933.8,
["x"] = -136.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [32]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
["Range"] = 4.4,
["TT"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
}, -- [33]
{
["Done"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [34]
{
["PickUp"] = {
54, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [35]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8901.8,
["x"] = -181.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [36]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044.4,
["x"] = -46.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [37]
{
["Done"] = {
54, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [38]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["UpdMapID"] = 1,
},
},
["5-12Human-Mage"] = {
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["SetHS"] = 60,
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [42]
{
["ExtraLine"] = "Learn First Aid upstairs",
["CRange"] = 60,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
["Range"] = 3.12,
["TT"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
}, -- [43]
{
["PickUp"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.1,
["x"] = 72.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [44]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["TT"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["level"] = 6,
["Range"] = 50,
["Grind"] = 11951,
}, -- [45]
{
["PickUp"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9889.9,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [46]
{
["PickUp"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895,
["x"] = 332.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [47]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [48]
{
["PickUp"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [49]
{
["PickUp"] = {
106, -- [1]
},
["TT"] = {
["y"] = -10013.9,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [50]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
[86] = {
["1"] = "1",
},
},
["Done"] = {
106, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [51]
{
["PickUp"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [52]
{
["Fillers"] = {
[86] = {
["1"] = "1",
},
},
["Done"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [53]
{
["PickUp"] = {
107, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [54]
{
["Qpart"] = {
[86] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9916.6,
["x"] = 375,
},
["Range"] = 48.16,
["TT"] = {
["y"] = -9916.6,
["x"] = 375,
},
}, -- [55]
{
["Done"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [56]
{
["PickUp"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [57]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [58]
{
["PickUp"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [59]
{
["CRange"] = 87,
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9860.7,
["x"] = 174.2,
},
["Range"] = 10.76,
["TT"] = {
["y"] = -9861.9,
["x"] = 174.3,
},
}, -- [60]
{
["Qpart"] = {
[62] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
["Range"] = 4.02,
["TT"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
}, -- [61]
{
["Qpart"] = {
[87] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
["Range"] = 0.13,
["TT"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
}, -- [62]
{
["Qpart"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
["Range"] = 28.52,
["TT"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
}, -- [63]
{
["TT"] = {
["y"] = -9834.2,
["x"] = 214.5,
},
["UseHS"] = 87,
["Zone"] = "12 (Elwynn Forest)",
}, -- [64]
{
["Done"] = {
60, -- [1]
107, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [65]
{
["PickUp"] = {
112, -- [1]
61, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [66]
{
["Done"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [67]
{
["PickUp"] = {
40, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [68]
{
["Done"] = {
62, -- [1]
40, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [69]
{
["PickUp"] = {
35, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [70]
{
["ExtraLine"] = "Sell",
["CRange"] = 112,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
["Range"] = 9.02,
["TT"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
}, -- [71]
{
["Qpart"] = {
[112] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
["Range"] = 54.16,
["TT"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
}, -- [72]
{
["CRange"] = 76,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
["Range"] = 7.16,
["TT"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
}, -- [73]
{
["Qpart"] = {
[76] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
}, -- [74]
{
["TT"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["level"] = 8,
["Range"] = 58,
["Grind"] = 11951,
}, -- [75]
{
["Done"] = {
35, -- [1]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [76]
{
["PickUp"] = {
52, -- [1]
37, -- [2]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [77]
{
["PickUp"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [78]
{
["PickUp"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9470,
["x"] = -1289.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [79]
{
["ExtraLine"] = "Sell",
["CRange"] = 5545,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
["Range"] = 4.37,
["TT"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
}, -- [80]
{
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[5545] = {
["1"] = "1",
},
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
37, -- [1]
},
["TT"] = {
["y"] = -9336.1,
["x"] = -986.3,
},
}, -- [81]
{
["PickUp"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9336.6,
["x"] = -986.6,
},
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
}, -- [82]
{
["ExtraLine"] = "Click Rolf's corpse",
["Done"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [83]
{
["PickUp"] = {
71, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [84]
{
["Qpart"] = {
[5545] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
["Range"] = 61.14,
["TT"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
}, -- [85]
{
["Done"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9469.3,
["x"] = -1288.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [86]
{
["Qpart"] = {
[83] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
["Range"] = 39.97,
["TT"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
}, -- [87]
{
["Qpart"] = {
[88] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9778.6,
["x"] = -891.3,
},
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 17.28,
["TT"] = {
["y"] = -9777.8,
["x"] = -876.1,
},
}, -- [88]
{
["Qpart"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9641,
["x"] = -890.7,
},
["Range"] = 51.75,
["TT"] = {
["y"] = -9641,
["x"] = -890.7,
},
}, -- [89]
{
["Done"] = {
71, -- [1]
52, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [90]
{
["PickUp"] = {
39, -- [1]
109, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [91]
{
["Done"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9530.8,
["x"] = -1222.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [92]
{
["TT"] = {
["y"] = -9529.8,
["x"] = -1222.9,
},
["UseHS"] = 39,
["Zone"] = "12 (Elwynn Forest)",
}, -- [93]
{
["Done"] = {
112, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [94]
{
["PickUp"] = {
114, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["ExtraLine"] = "Wait a sec for quest",
["Zone"] = "12 (Elwynn Forest)",
}, -- [95]
{
["Done"] = {
39, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [96]
{
["PickUp"] = {
239, -- [1]
59, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [97]
{
["PickUp"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [98]
{
["ExtraLine"] = "Need lvl10 for Class quest",
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9457,
["x"] = 87.5,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [99]
{
["ExtraLine"] = "Upstairs",
["Zone"] = "12 (Elwynn Forest)",
["PickUp"] = {
1860,
},
["TT"] = {
["y"] = -9471.4,
["x"] = 33.7,
},
},
{
["Done"] = {
114, -- [1]
},
["TT"] = {
["y"] = -10014,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [101]
{
["Done"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895.2,
["x"] = 332.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [102]
{
["Done"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9889.6,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [103]
{
["Done"] = {
239, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [104]
{
["PickUp"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [105]
{
["PickUp"] = {
36, -- [1]
},
["TT"] = {
["y"] = -9852.4,
["x"] = 918.6,
},
["Zone"] = "40 (Westfall)",
}, -- [107]
{
["Done"] = {
36, -- [1]
},
["TT"] = {
["y"] = -10112.6,
["x"] = 1042.4,
},
["Zone"] = "40 (Westfall)",
}, -- [108]
{
["Done"] = {
109, -- [1]
},
["TT"] = {
["y"] = -10509.1,
["x"] = 1045.5,
},
["Zone"] = "40 (Westfall)",
}, -- [109]
{
["PickUp"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10500.8,
["x"] = 1022.5,
},
["Zone"] = "40 (Westfall)",
}, -- [110]
{
["Done"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [111]
{
["PickUp"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [112]
{
["UseFlightPath"] = 6281,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
}, -- [113]
{
["Done"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [114]
{
["PickUp"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [115]
{
["Done"] = {
61, -- [1]
},
["TT"] = {
["y"] = -8857.5,
["x"] = 625.4,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [124]
{
["ExtraLine"] = "visit weapons trainer",
["CRange"] = 6261,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
["Range"] = 3.6,
["TT"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
}, -- [125]
{
["ExtraLine"] = "In Mage Tower",
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
1860,
},
["TT"] = {
["y"] = -8989.7,
["x"] = 862.7,
},
},
{
["PickUp"] = {
1861,
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8989.7,
["x"] = 862.7,
},
},
{
["Done"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [126]
{
["PickUp"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [127]
{
["UseFlightPath"] = 6285,
["Name"] = "Sentinel Hill, Westfall",
["TT"] = {
["y"] = -8836,
["x"] = 490.8,
},
}, -- [128]
{
["Done"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -10500.7,
["x"] = 1021.8,
},
["Zone"] = "40 (Westfall)",
}, -- [129]
{
["CRange"] = 11,
["Zone"] = "40 (Westfall)",
["Trigger"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
["Range"] = 43.69,
["TT"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
}, -- [130]
{
["Qpart"] = {
[11] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9999.6,
["x"] = 623,
},
["LeaveQuests"] = {
12, -- [1]
102, -- [2]
151, -- [3]
64, -- [4]
9, -- [5]
22, -- [6]
38, -- [7]
},
["Range"] = 83.29,
["TT"] = {
["y"] = -9999.6,
["x"] = 623,
},
}, -- [131]
{
["Done"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.6,
["x"] = 694.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [132]
{
["ExtraLine"] = "Use Flask to take Sample",
["Qpart"] = {
[1861] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9360.6,
["x"] = 540.1,
},
["Range"] = 0.14,
["TT"] = {
["y"] = -9360.6,
["x"] = 540.1,
},
["Button"] = 7207,
},
{
["PickUp"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.4,
["x"] = -1032.3,
},
["ExtraLine"] = "Die and sprit rez or run",
["Zone"] = "12 (Elwynn Forest)",
}, -- [133]
{
["Qpart"] = {
[46] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
["Range"] = 44.97,
["TT"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
}, -- [134]
{
["Done"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.3,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [135]
{
["Done"] = {
59, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [136]
{
["CRange"] = 244,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
["Range"] = 40.01,
["TT"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
}, -- [141]
{
["PickUp"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9609.3,
["x"] = -1902.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [142]
{
["Done"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [143]
{
["PickUp"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [144]
{
["UseFlightPath"] = 246,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -9435.1,
["x"] = -2234.8,
},
}, -- [145]
{
["ExtraLine"] = "In Mage Tower",
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
1861,
},
["TT"] = {
["y"] = -8990.7,
["x"] = 862.9,
},
},
{
["Done"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [146]
{
["PickUp"] = {
353, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [147]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4839,
["x"] = -1318.5,
},
["Range"] = 49.27,
["TT"] = {
["y"] = -8352,
["x"] = 522.2,
},
}, -- [148]
{
["ExtraLine"] = "Weapon Master",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
["Range"] = 2.07,
["TT"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
}, -- [149]
{
["GetFP"] = 353,
["TT"] = {
["y"] = -4821.3,
["x"] = -1152.5,
},
["Zone"] = "1537 (Ironforge)",
}, -- [150]
{
["ExtraLine"] = "Exit Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
["Range"] = 19.7,
["TT"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
}, -- [151]
{
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
["Range"] = 19.06,
["TT"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
}, -- [152]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5046,
["x"] = -795.3,
},
["Range"] = 18.14,
["TT"] = {
["y"] = -5046,
["x"] = -795.3,
},
}, -- [153]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1580,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [154]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726,
["x"] = -1599.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [155]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
["Range"] = 57.44,
["TT"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
}, -- [156]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.1,
["x"] = -1600.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [157]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.4,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [158]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5638.2,
["x"] = -1520,
},
["Range"] = 20.46,
["TT"] = {
["y"] = -5638.2,
["x"] = -1520,
},
}, -- [159]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
["Range"] = 17.21,
["TT"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
}, -- [160]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
["Range"] = 21.63,
["TT"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
}, -- [161]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
["Range"] = 5.38,
["TT"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
}, -- [162]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
["Range"] = 11.84,
["TT"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
}, -- [163]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
["Range"] = 5.81,
["TT"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
}, -- [164]
{
["CRange"] = 353,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
["Range"] = 10.9,
["TT"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
}, -- [165]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.6,
["x"] = -2602.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [166]
{
["UpdMapID"] = 1,
},
},
["1-5Human-Paladin"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8933.9,
["x"] = -136.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [1]
{
["Done"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [2]
{
["PickUp"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [3]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8933.6,
["x"] = -136.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [4]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
["Range"] = 8.05,
["TT"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
}, -- [5]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
["Range"] = 8.09,
["TT"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
}, -- [6]
{
["Done"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [7]
{
["PickUp"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [8]
{
["Qpart"] = {
[7] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
["Fillers"] = {
[33] = {
["1"] = "1",
},
},
["Range"] = 28.22,
["TT"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
}, -- [9]
{
["Qpart"] = {
[33] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
["Range"] = 35.45,
["TT"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
}, -- [10]
{
["Done"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8868.7,
["x"] = -163.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [11]
{
["CRange"] = 7,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
["Range"] = 8.54,
["TT"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
}, -- [12]
{
["Done"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [13]
{
["PickUp"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [14]
{
["PickUp"] = {
3101, -- [1]
},
["TT"] = {
["y"] = -8902.4,
["x"] = -162.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [15]
{
["Done"] = {
3101, -- [1]
},
["TT"] = {
["y"] = -8914.6,
["x"] = -215,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [16]
{
["ExtraLine"] = "Train Abilitys and sell",
["TT"] = {
["y"] = -8933,
["x"] = -136.6,
},
["PickUp"] = {
18, -- [1]
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [17]
{
["Qpart"] = {
[18] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9039.9,
["x"] = -322.4,
},
["Range"] = 28.16,
["TT"] = {
["y"] = -9037.8,
["x"] = -320.6,
},
}, -- [18]
{
["Qpart"] = {
[15] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
["Range"] = 40.62,
["TT"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
}, -- [19]
{
["ExtraLine"] = "Sell",
["Done"] = {
18, -- [1]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [20]
{
["PickUp"] = {
3903, -- [1]
6, -- [2]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [21]
{
["Done"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [22]
{
["PickUp"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [23]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
["Range"] = 8.58,
["TT"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
}, -- [24]
{
["Qpart"] = {
[21] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
["Range"] = 13.68,
["TT"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
}, -- [25]
{
["Done"] = {
3903, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [26]
{
["PickUp"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [27]
{
["Qpart"] = {
[6] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
["Fillers"] = {
[3904] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
}, -- [28]
{
["Qpart"] = {
[3904] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
["Range"] = 39.95,
["TT"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
}, -- [29]
{
["Done"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [30]
{
["PickUp"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [31]
{
["Done"] = {
6, -- [1]
},
["TT"] = {
["y"] = -8933.8,
["x"] = -136.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [32]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
["Range"] = 4.4,
["TT"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
}, -- [33]
{
["Done"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [34]
{
["PickUp"] = {
54, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [35]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8901.8,
["x"] = -181.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [36]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044.4,
["x"] = -46.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [37]
{
["Done"] = {
54, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [38]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["UpdMapID"] = 1,
},
},
["5-12Human-Paladin"] = {
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["SetHS"] = 60,
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [42]
{
["ExtraLine"] = "Learn First Aid upstairs",
["CRange"] = 60,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
["Range"] = 3.12,
["TT"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
}, -- [43]
{
["PickUp"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.1,
["x"] = 72.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [44]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["TT"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["level"] = 6,
["Range"] = 50,
["Grind"] = 11951,
}, -- [45]
{
["PickUp"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9889.9,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [46]
{
["PickUp"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895,
["x"] = 332.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [47]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [48]
{
["PickUp"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [49]
{
["PickUp"] = {
106, -- [1]
},
["TT"] = {
["y"] = -10013.9,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [50]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
[86] = {
["1"] = "1",
},
},
["Done"] = {
106, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [51]
{
["PickUp"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [52]
{
["Fillers"] = {
[86] = {
["1"] = "1",
},
},
["Done"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [53]
{
["PickUp"] = {
107, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [54]
{
["Qpart"] = {
[86] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9916.6,
["x"] = 375,
},
["Range"] = 48.16,
["TT"] = {
["y"] = -9916.6,
["x"] = 375,
},
}, -- [55]
{
["Done"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [56]
{
["PickUp"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [57]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [58]
{
["PickUp"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [59]
{
["CRange"] = 87,
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9860.7,
["x"] = 174.2,
},
["Range"] = 10.76,
["TT"] = {
["y"] = -9861.9,
["x"] = 174.3,
},
}, -- [60]
{
["Qpart"] = {
[62] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
["Range"] = 4.02,
["TT"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
}, -- [61]
{
["Qpart"] = {
[87] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
["Range"] = 0.13,
["TT"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
}, -- [62]
{
["Qpart"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
["Range"] = 28.52,
["TT"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
}, -- [63]
{
["TT"] = {
["y"] = -9834.2,
["x"] = 214.5,
},
["UseHS"] = 87,
["Zone"] = "12 (Elwynn Forest)",
}, -- [64]
{
["Done"] = {
60, -- [1]
107, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [65]
{
["PickUp"] = {
112, -- [1]
61, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [66]
{
["Done"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [67]
{
["PickUp"] = {
40, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [68]
{
["Done"] = {
62, -- [1]
40, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [69]
{
["PickUp"] = {
35, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [70]
{
["ExtraLine"] = "Sell",
["CRange"] = 112,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
["Range"] = 9.02,
["TT"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
}, -- [71]
{
["Qpart"] = {
[112] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
["Range"] = 54.16,
["TT"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
}, -- [72]
{
["CRange"] = 76,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
["Range"] = 7.16,
["TT"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
}, -- [73]
{
["Qpart"] = {
[76] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
}, -- [74]
{
["TT"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["level"] = 8,
["Range"] = 58,
["Grind"] = 11951,
}, -- [75]
{
["Done"] = {
35, -- [1]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [76]
{
["PickUp"] = {
52, -- [1]
37, -- [2]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [77]
{
["PickUp"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [78]
{
["PickUp"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9470,
["x"] = -1289.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [79]
{
["ExtraLine"] = "Sell",
["CRange"] = 5545,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
["Range"] = 4.37,
["TT"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
}, -- [80]
{
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[5545] = {
["1"] = "1",
},
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
37, -- [1]
},
["TT"] = {
["y"] = -9336.1,
["x"] = -986.3,
},
}, -- [81]
{
["PickUp"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9336.6,
["x"] = -986.6,
},
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
}, -- [82]
{
["ExtraLine"] = "Click Rolf's corpse",
["Done"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [83]
{
["PickUp"] = {
71, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [84]
{
["Qpart"] = {
[5545] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
["Range"] = 61.14,
["TT"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
}, -- [85]
{
["Done"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9469.3,
["x"] = -1288.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [86]
{
["Qpart"] = {
[83] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
["Range"] = 39.97,
["TT"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
}, -- [87]
{
["Qpart"] = {
[88] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9778.6,
["x"] = -891.3,
},
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 17.28,
["TT"] = {
["y"] = -9777.8,
["x"] = -876.1,
},
}, -- [88]
{
["Qpart"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9641,
["x"] = -890.7,
},
["Range"] = 51.75,
["TT"] = {
["y"] = -9641,
["x"] = -890.7,
},
}, -- [89]
{
["Done"] = {
71, -- [1]
52, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [90]
{
["PickUp"] = {
39, -- [1]
109, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [91]
{
["Done"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9530.8,
["x"] = -1222.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [92]
{
["TT"] = {
["y"] = -9529.8,
["x"] = -1222.9,
},
["UseHS"] = 39,
["Zone"] = "12 (Elwynn Forest)",
}, -- [93]
{
["Done"] = {
112, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [94]
{
["PickUp"] = {
114, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["ExtraLine"] = "Wait a sec for quest",
["Zone"] = "12 (Elwynn Forest)",
}, -- [95]
{
["Done"] = {
39, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [96]
{
["PickUp"] = {
239, -- [1]
59, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [97]
{
["PickUp"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [98]
{
["ExtraLine"] = "Need lvl10 for Class quest",
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9457,
["x"] = 87.5,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [99]
{
["Done"] = {
114, -- [1]
},
["TT"] = {
["y"] = -10014,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [101]
{
["Done"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895.2,
["x"] = 332.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [102]
{
["Done"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9889.6,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [103]
{
["Done"] = {
239, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [104]
{
["PickUp"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [105]
{
["PickUp"] = {
36, -- [1]
},
["TT"] = {
["y"] = -9852.4,
["x"] = 918.6,
},
["Zone"] = "40 (Westfall)",
}, -- [107]
{
["Done"] = {
36, -- [1]
},
["TT"] = {
["y"] = -10112.6,
["x"] = 1042.4,
},
["Zone"] = "40 (Westfall)",
}, -- [108]
{
["Done"] = {
109, -- [1]
},
["TT"] = {
["y"] = -10509.1,
["x"] = 1045.5,
},
["Zone"] = "40 (Westfall)",
}, -- [109]
{
["PickUp"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10500.8,
["x"] = 1022.5,
},
["Zone"] = "40 (Westfall)",
}, -- [110]
{
["Done"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [111]
{
["PickUp"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [112]
{
["UseFlightPath"] = 6281,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
}, -- [113]
{
["Done"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [114]
{
["Done"] = {
61, -- [1]
},
["TT"] = {
["y"] = -8857.5,
["x"] = 625.4,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [124]
{
["ExtraLine"] = "visit weapons trainer",
["CRange"] = 6261,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
["Range"] = 3.6,
["TT"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
}, -- [125]
{
["Done"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [126]
{
["PickUp"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [127]
{
["UseFlightPath"] = 6285,
["Name"] = "Sentinel Hill, Westfall",
["TT"] = {
["y"] = -8836,
["x"] = 490.8,
},
}, -- [128]
{
["Done"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -10500.7,
["x"] = 1021.8,
},
["Zone"] = "40 (Westfall)",
}, -- [129]
{
["CRange"] = 11,
["Zone"] = "40 (Westfall)",
["Trigger"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
["Range"] = 43.69,
["TT"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
}, -- [130]
{
["ExtraLine"] = "Save 10 Linen Cloth for Class Quest",
["Qpart"] = {
[11] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9999.6,
["x"] = 623,
},
["LeaveQuests"] = {
12, -- [1]
102, -- [2]
151, -- [3]
64, -- [4]
9, -- [5]
22, -- [6]
38, -- [7]
},
["Range"] = 83.29,
["TT"] = {
["y"] = -9999.6,
["x"] = 623,
},
}, -- [131]
{
["Done"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.6,
["x"] = 694.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [132]
{
["ExtraLine"] = "Save 10 Linen Cloth for Class Quest",
["Trigger"] = {
["y"] = -9875.2,
["x"] = 617.1,
},
["Grind"] = 11951,
["Range"] = 64.92,
["TT"] = {
["y"] = -9875.2,
["x"] = 617.1,
},
["level"] = 12,
["xp"] = 1,
}, -- [2]
{
["ExtraLine"] = "Die and spirit rez or run",
["Zone"] = "12 (Elwynn Forest)",
["PickUp"] = {
2998, -- [1]
},
["TT"] = {
["y"] = -9468.5,
["x"] = 109.1,
},
}, -- [1]
{
["ExtraLine"] = "Run to Stormwind",
["CRange"] = 2998,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -9085.2,
["x"] = 420,
},
["Range"] = 25.11,
["TT"] = {
["y"] = -9085.2,
["x"] = 420,
},
}, -- [2]
{
["CRange"] = 2998,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8965.5,
["x"] = 510.6,
},
["Range"] = 21,
["TT"] = {
["y"] = -8965.5,
["x"] = 510.6,
},
}, -- [3]
{
["Done"] = {
2998, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8546.2,
["x"] = 845.5,
},
}, -- [4]
{
["PickUp"] = {
1641, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8546.2,
["x"] = 845.5,
},
}, -- [5]
{
["Done"] = {
1641, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8546.2,
["x"] = 845.5,
},
}, -- [6]
{
["ExtraLine"] = "Use quest item for quest",
["Zone"] = "1519 (Stormwind City)",
["PickUp"] = {
1642, -- [1]
},
["TT"] = {
["y"] = -8546.2,
["x"] = 845.5,
},
}, -- [7]
{
["Done"] = {
1642, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8546.2,
["x"] = 845.5,
},
}, -- [8]
{
["PickUp"] = {
1643, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8546.2,
["x"] = 845.5,
},
}, -- [9]
{
["Done"] = {
1643, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8832.3,
["x"] = 614,
},
}, -- [10]
{
["PickUp"] = {
1644, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8832.3,
["x"] = 614,
},
}, -- [11]
{
["Done"] = {
1644, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8831.8,
["x"] = 613.8,
},
}, -- [12]
{
["PickUp"] = {
1780, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8831.8,
["x"] = 613.8,
},
}, -- [13]
{
["Done"] = {
1780, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8546.4,
["x"] = 845.5,
},
}, -- [14]
{
["PickUp"] = {
1781, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8546.4,
["x"] = 845.5,
},
}, -- [15]
{
["Done"] = {
1781, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8516.2,
["x"] = 862.2,
},
}, -- [16]
{
["PickUp"] = {
1786, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8516.2,
["x"] = 862.2,
},
}, -- [17]
{
["ExtraLine"] = "Back to Elwynn Forest",
["CRange"] = 1786,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9156.4,
["x"] = 337.8,
},
["Range"] = 37.9,
["TT"] = {
["y"] = -9156.4,
["x"] = 337.8,
},
}, -- [18]
{
["PickUp"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.4,
["x"] = -1032.3,
},
["ExtraLine"] = "Die and sprit rez or run",
["Zone"] = "12 (Elwynn Forest)",
}, -- [133]
{
["Qpart"] = {
[46] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
["Range"] = 44.97,
["TT"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
}, -- [134]
{
["Done"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.3,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [135]
{
["Done"] = {
59, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [136]
{
["ExtraLine"] = "Use Symbol of Life to rez Henze Faulk",
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
1786,
},
["TT"] = {
["y"] = -9129.6,
["x"] = -984.5,
},
},
{
["PickUp"] = {
1787,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -9129.6,
["x"] = -984.5,
},
},
{
["Qpart"] = {
[1787] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9123.9,
["x"] = -1020.3,
},
["Range"] = 36.92,
["TT"] = {
["y"] = -9123.9,
["x"] = -1020.3,
},
},
{
["CRange"] = 244,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
["Range"] = 40.01,
["TT"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
}, -- [141]
{
["PickUp"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9609.3,
["x"] = -1902.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [142]
{
["Done"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [143]
{
["PickUp"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [144]
{
["UseFlightPath"] = 246,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -9435.1,
["x"] = -2234.8,
},
}, -- [145]
{
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
1787,
},
["TT"] = {
["y"] = -8516.1,
["x"] = 862.3,
},
},
{
["PickUp"] = {
1788,
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8516.1,
["x"] = 862.3,
},
},
{
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
[1] = 1788,
},
["TT"] = {
["y"] = -8545.5,
["x"] = 845.1,
},
},
{
["Done"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [146]
{
["PickUp"] = {
353, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [147]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4839,
["x"] = -1318.5,
},
["Range"] = 49.27,
["TT"] = {
["y"] = -8352,
["x"] = 522.2,
},
}, -- [148]
{
["ExtraLine"] = "Weapon Master",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
["Range"] = 2.07,
["TT"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
}, -- [149]
{
["GetFP"] = 353,
["TT"] = {
["y"] = -4821.3,
["x"] = -1152.5,
},
["Zone"] = "1537 (Ironforge)",
}, -- [150]
{
["ExtraLine"] = "Exit Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
["Range"] = 19.7,
["TT"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
}, -- [151]
{
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
["Range"] = 19.06,
["TT"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
}, -- [152]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5046,
["x"] = -795.3,
},
["Range"] = 18.14,
["TT"] = {
["y"] = -5046,
["x"] = -795.3,
},
}, -- [153]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1580,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [154]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726,
["x"] = -1599.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [155]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
["Range"] = 57.44,
["TT"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
}, -- [156]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.1,
["x"] = -1600.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [157]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.4,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [158]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5638.2,
["x"] = -1520,
},
["Range"] = 20.46,
["TT"] = {
["y"] = -5638.2,
["x"] = -1520,
},
}, -- [159]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
["Range"] = 17.21,
["TT"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
}, -- [160]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
["Range"] = 21.63,
["TT"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
}, -- [161]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
["Range"] = 5.38,
["TT"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
}, -- [162]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
["Range"] = 11.84,
["TT"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
}, -- [163]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
["Range"] = 5.81,
["TT"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
}, -- [164]
{
["CRange"] = 353,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
["Range"] = 10.9,
["TT"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
}, -- [165]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.6,
["x"] = -2602.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [166]
{
["UpdMapID"] = 1,
},
},
["1-5Human-Priest"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8933.9,
["x"] = -136.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [1]
{
["Done"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [2]
{
["PickUp"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [3]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8933.6,
["x"] = -136.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [4]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
["Range"] = 8.05,
["TT"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
}, -- [5]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
["Range"] = 8.09,
["TT"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
}, -- [6]
{
["Done"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [7]
{
["PickUp"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [8]
{
["Qpart"] = {
[7] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
["Fillers"] = {
[33] = {
["1"] = "1",
},
},
["Range"] = 28.22,
["TT"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
}, -- [9]
{
["Qpart"] = {
[33] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
["Range"] = 35.45,
["TT"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
}, -- [10]
{
["Done"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8868.7,
["x"] = -163.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [11]
{
["CRange"] = 7,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
["Range"] = 8.54,
["TT"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
}, -- [12]
{
["Done"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [13]
{
["PickUp"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [14]
{
["PickUp"] = {
3103,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -8903.2,
["x"] = -162.5,
},
},
{
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
3103,
},
["TT"] = {
["y"] = -8853.7,
["x"] = -193.5,
},
},
{
["ExtraLine"] = "Train Abilitys and sell",
["TT"] = {
["y"] = -8933,
["x"] = -136.6,
},
["PickUp"] = {
18, -- [1]
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [17]
{
["Qpart"] = {
[18] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9039.9,
["x"] = -322.4,
},
["Range"] = 28.16,
["TT"] = {
["y"] = -9037.8,
["x"] = -320.6,
},
}, -- [18]
{
["Qpart"] = {
[15] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
["Range"] = 40.62,
["TT"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
}, -- [19]
{
["ExtraLine"] = "Sell",
["Done"] = {
18, -- [1]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [20]
{
["PickUp"] = {
3903, -- [1]
6, -- [2]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [21]
{
["Done"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [22]
{
["PickUp"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [23]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
["Range"] = 8.58,
["TT"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
}, -- [24]
{
["Qpart"] = {
[21] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
["Range"] = 13.68,
["TT"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
}, -- [25]
{
["Done"] = {
3903, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [26]
{
["PickUp"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [27]
{
["Qpart"] = {
[6] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
["Fillers"] = {
[3904] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
}, -- [28]
{
["Qpart"] = {
[3904] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
["Range"] = 39.95,
["TT"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
}, -- [29]
{
["Done"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [30]
{
["PickUp"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [31]
{
["Done"] = {
6, -- [1]
},
["TT"] = {
["y"] = -8933.8,
["x"] = -136.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [32]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
["Range"] = 4.4,
["TT"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
}, -- [33]
{
["Done"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [34]
{
["PickUp"] = {
54, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [35]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8901.8,
["x"] = -181.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [36]
{
["ExtraLine"] = "Drop down and see you trainer",
["Zone"] = "12 (Elwynn Forest)",
["PickUp"] = {
5623,
},
["TT"] = {
["y"] = -8853.6,
["x"] = -193.1,
},
},
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044.4,
["x"] = -46.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [37]
{
["Done"] = {
54, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [38]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["UpdMapID"] = 1,
},
},
["5-12Human-Priest"] = {
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["SetHS"] = 60,
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [42]
{
["ExtraLine"] = "Learn First Aid upstairs",
["CRange"] = 60,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
["Range"] = 3.12,
["TT"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
}, -- [43]
{
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
5623,
},
["TT"] = {
["y"] = -9460.8,
["x"] = 33.3,
},
},
{
["PickUp"] = {
5624,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -9460.8,
["x"] = 33.3,
},
},
{
["PickUp"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.1,
["x"] = 72.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [44]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["Qpart"] = {
[5624] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9484.3,
["x"] = -95.9,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -9484.3,
["x"] = -95.9,
},
},
{
["Qpart"] = {
[5624] = {
["2"] = "2",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9484.3,
["x"] = -95.9,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -9484.3,
["x"] = -95.9,
},
},
{
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
5624,
},
["TT"] = {
["y"] = -9460.6,
["x"] = 32.9,
},
},
{
["TT"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["level"] = 6,
["Range"] = 50,
["Grind"] = 11951,
}, -- [45]
{
["PickUp"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9889.9,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [46]
{
["PickUp"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895,
["x"] = 332.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [47]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [48]
{
["PickUp"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [49]
{
["PickUp"] = {
106, -- [1]
},
["TT"] = {
["y"] = -10013.9,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [50]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
[86] = {
["1"] = "1",
},
},
["Done"] = {
106, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [51]
{
["PickUp"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [52]
{
["Fillers"] = {
[86] = {
["1"] = "1",
},
},
["Done"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [53]
{
["PickUp"] = {
107, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [54]
{
["Qpart"] = {
[86] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9916.6,
["x"] = 375,
},
["Range"] = 48.16,
["TT"] = {
["y"] = -9916.6,
["x"] = 375,
},
}, -- [55]
{
["Done"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [56]
{
["PickUp"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [57]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [58]
{
["PickUp"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [59]
{
["CRange"] = 87,
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9860.7,
["x"] = 174.2,
},
["Range"] = 10.76,
["TT"] = {
["y"] = -9861.9,
["x"] = 174.3,
},
}, -- [60]
{
["Qpart"] = {
[62] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
["Range"] = 4.02,
["TT"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
}, -- [61]
{
["Qpart"] = {
[87] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
["Range"] = 0.13,
["TT"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
}, -- [62]
{
["Qpart"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
["Range"] = 28.52,
["TT"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
}, -- [63]
{
["TT"] = {
["y"] = -9834.2,
["x"] = 214.5,
},
["UseHS"] = 87,
["Zone"] = "12 (Elwynn Forest)",
}, -- [64]
{
["Done"] = {
60, -- [1]
107, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [65]
{
["PickUp"] = {
112, -- [1]
61, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [66]
{
["Done"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [67]
{
["PickUp"] = {
40, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [68]
{
["Done"] = {
62, -- [1]
40, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [69]
{
["PickUp"] = {
35, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [70]
{
["ExtraLine"] = "Sell",
["CRange"] = 112,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
["Range"] = 9.02,
["TT"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
}, -- [71]
{
["Qpart"] = {
[112] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
["Range"] = 54.16,
["TT"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
}, -- [72]
{
["CRange"] = 76,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
["Range"] = 7.16,
["TT"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
}, -- [73]
{
["Qpart"] = {
[76] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
}, -- [74]
{
["TT"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["level"] = 8,
["Range"] = 58,
["Grind"] = 11951,
}, -- [75]
{
["Done"] = {
35, -- [1]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [76]
{
["PickUp"] = {
52, -- [1]
37, -- [2]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [77]
{
["PickUp"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [78]
{
["PickUp"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9470,
["x"] = -1289.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [79]
{
["ExtraLine"] = "Sell",
["CRange"] = 5545,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
["Range"] = 4.37,
["TT"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
}, -- [80]
{
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[5545] = {
["1"] = "1",
},
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
37, -- [1]
},
["TT"] = {
["y"] = -9336.1,
["x"] = -986.3,
},
}, -- [81]
{
["PickUp"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9336.6,
["x"] = -986.6,
},
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
}, -- [82]
{
["ExtraLine"] = "Click Rolf's corpse",
["Done"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [83]
{
["PickUp"] = {
71, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [84]
{
["Qpart"] = {
[5545] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
["Range"] = 61.14,
["TT"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
}, -- [85]
{
["Done"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9469.3,
["x"] = -1288.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [86]
{
["Qpart"] = {
[83] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
["Range"] = 39.97,
["TT"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
}, -- [87]
{
["Qpart"] = {
[88] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9778.6,
["x"] = -891.3,
},
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 17.28,
["TT"] = {
["y"] = -9777.8,
["x"] = -876.1,
},
}, -- [88]
{
["Qpart"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9641,
["x"] = -890.7,
},
["Range"] = 51.75,
["TT"] = {
["y"] = -9641,
["x"] = -890.7,
},
}, -- [89]
{
["Done"] = {
71, -- [1]
52, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [90]
{
["PickUp"] = {
39, -- [1]
109, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [91]
{
["Done"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9530.8,
["x"] = -1222.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [92]
{
["TT"] = {
["y"] = -9529.8,
["x"] = -1222.9,
},
["UseHS"] = 39,
["Zone"] = "12 (Elwynn Forest)",
}, -- [93]
{
["Done"] = {
112, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [94]
{
["PickUp"] = {
114, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["ExtraLine"] = "Wait a sec for quest",
["Zone"] = "12 (Elwynn Forest)",
}, -- [95]
{
["Done"] = {
39, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [96]
{
["PickUp"] = {
239, -- [1]
59, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [97]
{
["PickUp"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [98]
{
["ExtraLine"] = "Need lvl10 for Class quest",
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9457,
["x"] = 87.5,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [99]
{
["ExtraLine"] = "Upstairs in the Inn",
["PickUp"] = {
5637,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -9461,
["x"] = 33,
},
},
{
["Done"] = {
114, -- [1]
},
["TT"] = {
["y"] = -10014,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [101]
{
["Done"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895.2,
["x"] = 332.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [102]
{
["Done"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9889.6,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [103]
{
["Done"] = {
239, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [104]
{
["PickUp"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [105]
{
["PickUp"] = {
36, -- [1]
},
["TT"] = {
["y"] = -9852.4,
["x"] = 918.6,
},
["Zone"] = "40 (Westfall)",
}, -- [107]
{
["Done"] = {
36, -- [1]
},
["TT"] = {
["y"] = -10112.6,
["x"] = 1042.4,
},
["Zone"] = "40 (Westfall)",
}, -- [108]
{
["Done"] = {
109, -- [1]
},
["TT"] = {
["y"] = -10509.1,
["x"] = 1045.5,
},
["Zone"] = "40 (Westfall)",
}, -- [109]
{
["PickUp"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10500.8,
["x"] = 1022.5,
},
["Zone"] = "40 (Westfall)",
}, -- [110]
{
["Done"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [111]
{
["PickUp"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [112]
{
["UseFlightPath"] = 6281,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
}, -- [113]
{
["Done"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [114]
{
["PickUp"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [115]
{
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
5637,
},
["TT"] = {
["y"] = -8515.6,
["x"] = 859.8,
},
},
{
["Done"] = {
61, -- [1]
},
["TT"] = {
["y"] = -8857.5,
["x"] = 625.4,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [124]
{
["ExtraLine"] = "visit weapons trainer",
["CRange"] = 6261,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
["Range"] = 3.6,
["TT"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
}, -- [125]
{
["Done"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [126]
{
["PickUp"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [127]
{
["UseFlightPath"] = 6285,
["Name"] = "Sentinel Hill, Westfall",
["TT"] = {
["y"] = -8836,
["x"] = 490.8,
},
}, -- [128]
{
["Done"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -10500.7,
["x"] = 1021.8,
},
["Zone"] = "40 (Westfall)",
}, -- [129]
{
["CRange"] = 11,
["Zone"] = "40 (Westfall)",
["Trigger"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
["Range"] = 43.69,
["TT"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
}, -- [130]
{
["ExtraLine"] = "if you find a group do Hogger",
["Qpart"] = {
[11] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9999.6,
["x"] = 623,
},
["LeaveQuests"] = {
12, -- [1]
102, -- [2]
151, -- [3]
64, -- [4]
9, -- [5]
22, -- [6]
38, -- [7]
},
["Range"] = 83.29,
["TT"] = {
["y"] = -9999.6,
["x"] = 623,
},
}, -- [131]
{
["Done"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.6,
["x"] = 694.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [132]
{
["PickUp"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.4,
["x"] = -1032.3,
},
["ExtraLine"] = "Die and sprit rez or run",
["Zone"] = "12 (Elwynn Forest)",
}, -- [133]
{
["Qpart"] = {
[46] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
["Range"] = 44.97,
["TT"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
}, -- [134]
{
["Done"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.3,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [135]
{
["Done"] = {
59, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [136]
{
["CRange"] = 244,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
["Range"] = 40.01,
["TT"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
}, -- [141]
{
["PickUp"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9609.3,
["x"] = -1902.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [142]
{
["Done"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [143]
{
["PickUp"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [144]
{
["UseFlightPath"] = 246,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -9435.1,
["x"] = -2234.8,
},
}, -- [145]
{
["Done"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [146]
{
["PickUp"] = {
353, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [147]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4839,
["x"] = -1318.5,
},
["Range"] = 49.27,
["TT"] = {
["y"] = -8352,
["x"] = 522.2,
},
}, -- [148]
{
["ExtraLine"] = "Weapon Master",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
["Range"] = 2.07,
["TT"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
}, -- [149]
{
["GetFP"] = 353,
["TT"] = {
["y"] = -4821.3,
["x"] = -1152.5,
},
["Zone"] = "1537 (Ironforge)",
}, -- [150]
{
["ExtraLine"] = "Exit Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
["Range"] = 19.7,
["TT"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
}, -- [151]
{
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
["Range"] = 19.06,
["TT"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
}, -- [152]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5046,
["x"] = -795.3,
},
["Range"] = 18.14,
["TT"] = {
["y"] = -5046,
["x"] = -795.3,
},
}, -- [153]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1580,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [154]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726,
["x"] = -1599.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [155]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
["Range"] = 57.44,
["TT"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
}, -- [156]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.1,
["x"] = -1600.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [157]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.4,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [158]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5638.2,
["x"] = -1520,
},
["Range"] = 20.46,
["TT"] = {
["y"] = -5638.2,
["x"] = -1520,
},
}, -- [159]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
["Range"] = 17.21,
["TT"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
}, -- [160]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
["Range"] = 21.63,
["TT"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
}, -- [161]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
["Range"] = 5.38,
["TT"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
}, -- [162]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
["Range"] = 11.84,
["TT"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
}, -- [163]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
["Range"] = 5.81,
["TT"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
}, -- [164]
{
["CRange"] = 353,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
["Range"] = 10.9,
["TT"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
}, -- [165]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.6,
["x"] = -2602.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [166]
{
["UpdMapID"] = 1,
},
},
["1-5Human-Rogue"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8933.9,
["x"] = -136.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [1]
{
["Done"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [2]
{
["PickUp"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [3]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8933.6,
["x"] = -136.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [4]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
["Range"] = 8.05,
["TT"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
}, -- [5]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
["Range"] = 8.09,
["TT"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
}, -- [6]
{
["Done"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [7]
{
["PickUp"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [8]
{
["Qpart"] = {
[7] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
["Fillers"] = {
[33] = {
["1"] = "1",
},
},
["Range"] = 28.22,
["TT"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
}, -- [9]
{
["Qpart"] = {
[33] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
["Range"] = 35.45,
["TT"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
}, -- [10]
{
["Done"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8868.7,
["x"] = -163.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [11]
{
["CRange"] = 7,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
["Range"] = 8.54,
["TT"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
}, -- [12]
{
["Done"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [13]
{
["PickUp"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [14]
{
["PickUp"] = {
3102,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -8902.700000000001,
["x"] = -162.3,
},
}, -- [15]
{
["CRange"] = 3102,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8916.5,
["x"] = -137.2,
},
["Range"] = 12.5,
["TT"] = {
["y"] = -8916.5,
["x"] = -137.2,
},
},
{
["CRange"] = 3102,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8871.6,
["x"] = -148.6,
},
["Range"] = 11.79,
["TT"] = {
["y"] = -8871.6,
["x"] = -148.6,
},
},
{
["CRange"] = 3102,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8837.9,
["x"] = -180.8,
},
["Range"] = 10.58,
["TT"] = {
["y"] = -8837.9,
["x"] = -180.8,
},
},
{
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
3102,
},
["TT"] = {
["y"] = -8862.8,
["x"] = -211.5,
},
},
{
["ExtraLine"] = "Train Abilitys and sell",
["TT"] = {
["y"] = -8933,
["x"] = -136.6,
},
["PickUp"] = {
18, -- [1]
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [17]
{
["Qpart"] = {
[18] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9039.9,
["x"] = -322.4,
},
["Range"] = 28.16,
["TT"] = {
["y"] = -9037.8,
["x"] = -320.6,
},
}, -- [18]
{
["Qpart"] = {
[15] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
["Range"] = 40.62,
["TT"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
}, -- [19]
{
["ExtraLine"] = "Sell",
["Done"] = {
18, -- [1]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [20]
{
["PickUp"] = {
3903, -- [1]
6, -- [2]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [21]
{
["Done"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [22]
{
["PickUp"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [23]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
["Range"] = 8.58,
["TT"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
}, -- [24]
{
["Qpart"] = {
[21] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
["Range"] = 13.68,
["TT"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
}, -- [25]
{
["Done"] = {
3903, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [26]
{
["PickUp"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [27]
{
["Qpart"] = {
[6] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
["Fillers"] = {
[3904] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
}, -- [28]
{
["Qpart"] = {
[3904] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
["Range"] = 39.95,
["TT"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
}, -- [29]
{
["Done"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [30]
{
["PickUp"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [31]
{
["Done"] = {
6, -- [1]
},
["TT"] = {
["y"] = -8933.8,
["x"] = -136.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [32]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
["Range"] = 4.4,
["TT"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
}, -- [33]
{
["Done"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [34]
{
["PickUp"] = {
54, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [35]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8901.8,
["x"] = -181.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [36]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044.4,
["x"] = -46.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [37]
{
["Done"] = {
54, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [38]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["UpdMapID"] = 1,
},
},
["5-12Human-Rogue"] = {
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["SetHS"] = 60,
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [42]
{
["ExtraLine"] = "Learn First Aid upstairs",
["CRange"] = 60,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
["Range"] = 3.12,
["TT"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
}, -- [43]
{
["PickUp"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.1,
["x"] = 72.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [44]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["TT"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["level"] = 6,
["Range"] = 50,
["Grind"] = 11951,
}, -- [45]
{
["PickUp"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9889.9,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [46]
{
["PickUp"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895,
["x"] = 332.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [47]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [48]
{
["PickUp"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [49]
{
["PickUp"] = {
106, -- [1]
},
["TT"] = {
["y"] = -10013.9,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [50]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
[86] = {
["1"] = "1",
},
},
["Done"] = {
106, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [51]
{
["PickUp"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [52]
{
["Fillers"] = {
[86] = {
["1"] = "1",
},
},
["Done"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [53]
{
["PickUp"] = {
107, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [54]
{
["Qpart"] = {
[86] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9916.6,
["x"] = 375,
},
["Range"] = 48.16,
["TT"] = {
["y"] = -9916.6,
["x"] = 375,
},
}, -- [55]
{
["Done"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [56]
{
["PickUp"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [57]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [58]
{
["PickUp"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [59]
{
["CRange"] = 87,
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9860.7,
["x"] = 174.2,
},
["Range"] = 10.76,
["TT"] = {
["y"] = -9861.9,
["x"] = 174.3,
},
}, -- [60]
{
["Qpart"] = {
[62] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
["Range"] = 4.02,
["TT"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
}, -- [61]
{
["Qpart"] = {
[87] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
["Range"] = 0.13,
["TT"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
}, -- [62]
{
["Qpart"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
["Range"] = 28.52,
["TT"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
}, -- [63]
{
["TT"] = {
["y"] = -9834.2,
["x"] = 214.5,
},
["UseHS"] = 87,
["Zone"] = "12 (Elwynn Forest)",
}, -- [64]
{
["Done"] = {
60, -- [1]
107, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [65]
{
["PickUp"] = {
112, -- [1]
61, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [66]
{
["Done"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [67]
{
["PickUp"] = {
40, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [68]
{
["Done"] = {
62, -- [1]
40, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [69]
{
["PickUp"] = {
35, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [70]
{
["ExtraLine"] = "Sell",
["CRange"] = 112,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
["Range"] = 9.02,
["TT"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
}, -- [71]
{
["Qpart"] = {
[112] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
["Range"] = 54.16,
["TT"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
}, -- [72]
{
["CRange"] = 76,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
["Range"] = 7.16,
["TT"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
}, -- [73]
{
["Qpart"] = {
[76] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
}, -- [74]
{
["TT"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["level"] = 8,
["Range"] = 58,
["Grind"] = 11951,
}, -- [75]
{
["Done"] = {
35, -- [1]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [76]
{
["PickUp"] = {
52, -- [1]
37, -- [2]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [77]
{
["PickUp"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [78]
{
["PickUp"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9470,
["x"] = -1289.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [79]
{
["ExtraLine"] = "Sell",
["CRange"] = 5545,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
["Range"] = 4.37,
["TT"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
}, -- [80]
{
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[5545] = {
["1"] = "1",
},
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
37, -- [1]
},
["TT"] = {
["y"] = -9336.1,
["x"] = -986.3,
},
}, -- [81]
{
["PickUp"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9336.6,
["x"] = -986.6,
},
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
}, -- [82]
{
["ExtraLine"] = "Click Rolf's corpse",
["Done"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [83]
{
["PickUp"] = {
71, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [84]
{
["Qpart"] = {
[5545] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
["Range"] = 61.14,
["TT"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
}, -- [85]
{
["Done"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9469.3,
["x"] = -1288.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [86]
{
["Qpart"] = {
[83] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
["Range"] = 39.97,
["TT"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
}, -- [87]
{
["Qpart"] = {
[88] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9778.6,
["x"] = -891.3,
},
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 17.28,
["TT"] = {
["y"] = -9777.8,
["x"] = -876.1,
},
}, -- [88]
{
["Qpart"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9641,
["x"] = -890.7,
},
["Range"] = 51.75,
["TT"] = {
["y"] = -9641,
["x"] = -890.7,
},
}, -- [89]
{
["Done"] = {
71, -- [1]
52, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [90]
{
["PickUp"] = {
39, -- [1]
109, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [91]
{
["Done"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9530.8,
["x"] = -1222.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [92]
{
["TT"] = {
["y"] = -9529.8,
["x"] = -1222.9,
},
["UseHS"] = 39,
["Zone"] = "12 (Elwynn Forest)",
}, -- [93]
{
["Done"] = {
112, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [94]
{
["PickUp"] = {
114, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["ExtraLine"] = "Wait a sec for quest",
["Zone"] = "12 (Elwynn Forest)",
}, -- [95]
{
["Done"] = {
39, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [96]
{
["PickUp"] = {
239, -- [1]
59, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [97]
{
["PickUp"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [98]
{
["ExtraLine"] = "Need lvl10 for Class quest",
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9457,
["x"] = 87.5,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [99]
{
["ExtraLine"] = "Upstairs in the Inn",
["Zone"] = "12 (Elwynn Forest)",
["PickUp"] = {
2205,
},
["TT"] = {
["y"] = -9465.5,
["x"] = 12.9,
},
},
{
["Done"] = {
114, -- [1]
},
["TT"] = {
["y"] = -10014,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [101]
{
["Done"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895.2,
["x"] = 332.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [102]
{
["Done"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9889.6,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [103]
{
["Done"] = {
239, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [104]
{
["PickUp"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [105]
{
["PickUp"] = {
36, -- [1]
},
["TT"] = {
["y"] = -9852.4,
["x"] = 918.6,
},
["Zone"] = "40 (Westfall)",
}, -- [107]
{
["Done"] = {
36, -- [1]
},
["TT"] = {
["y"] = -10112.6,
["x"] = 1042.4,
},
["Zone"] = "40 (Westfall)",
}, -- [108]
{
["Done"] = {
109, -- [1]
},
["TT"] = {
["y"] = -10509.1,
["x"] = 1045.5,
},
["Zone"] = "40 (Westfall)",
}, -- [109]
{
["PickUp"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10500.8,
["x"] = 1022.5,
},
["Zone"] = "40 (Westfall)",
}, -- [110]
{
["Done"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [111]
{
["PickUp"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [112]
{
["UseFlightPath"] = 6281,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
}, -- [113]
{
["Done"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [114]
{
["PickUp"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [115]
{
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
2205,
},
["TT"] = {
["y"] = -8815.5,
["x"] = 361.8,
},
},
{
["PickUp"] = {
2206,
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8815.5,
["x"] = 361.8,
},
},
{
["Done"] = {
61, -- [1]
},
["TT"] = {
["y"] = -8857.5,
["x"] = 625.4,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [124]
{
["ExtraLine"] = "visit weapons trainer",
["CRange"] = 6261,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
["Range"] = 3.6,
["TT"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
}, -- [125]
{
["Done"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [126]
{
["PickUp"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [127]
{
["UseFlightPath"] = 6285,
["Name"] = "Sentinel Hill, Westfall",
["TT"] = {
["y"] = -8836,
["x"] = 490.8,
},
}, -- [128]
{
["Done"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -10500.7,
["x"] = 1021.8,
},
["Zone"] = "40 (Westfall)",
}, -- [129]
{
["CRange"] = 11,
["Zone"] = "40 (Westfall)",
["Trigger"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
["Range"] = 43.69,
["TT"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
}, -- [130]
{
["ExtraLine"] = "if you find a group do Hogger",
["Qpart"] = {
[11] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9999.6,
["x"] = 623,
},
["LeaveQuests"] = {
12, -- [1]
102, -- [2]
151, -- [3]
64, -- [4]
9, -- [5]
22, -- [6]
38, -- [7]
},
["Range"] = 83.29,
["TT"] = {
["y"] = -9999.6,
["x"] = 623,
},
}, -- [131]
{
["Done"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.6,
["x"] = 694.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [132]
{
["ExtraLine"] = "Stealth and pickpocket the Dockmaster",
["Qpart"] = {
[2206] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9963.9,
["x"] = -137.3,
},
["Range"] = 0.17,
["TT"] = {
["y"] = -9963.9,
["x"] = -137.3,
},
},
{
["PickUp"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.4,
["x"] = -1032.3,
},
["ExtraLine"] = "Die and sprit rez or run",
["Zone"] = "12 (Elwynn Forest)",
}, -- [133]
{
["Qpart"] = {
[46] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
["Range"] = 44.97,
["TT"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
}, -- [134]
{
["Done"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.3,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [135]
{
["Done"] = {
59, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [136]
{
["CRange"] = 244,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
["Range"] = 40.01,
["TT"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
}, -- [141]
{
["PickUp"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9609.3,
["x"] = -1902.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [142]
{
["Done"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [143]
{
["PickUp"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [144]
{
["UseFlightPath"] = 246,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -9435.1,
["x"] = -2234.8,
},
}, -- [145]
{
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
2206,
},
["TT"] = {
["y"] = -8815.1,
["x"] = 362.2,
},
},
{
["Done"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [146]
{
["PickUp"] = {
353, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [147]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4839,
["x"] = -1318.5,
},
["Range"] = 49.27,
["TT"] = {
["y"] = -8352,
["x"] = 522.2,
},
}, -- [148]
{
["ExtraLine"] = "Weapon Master",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
["Range"] = 2.07,
["TT"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
}, -- [149]
{
["GetFP"] = 353,
["TT"] = {
["y"] = -4821.3,
["x"] = -1152.5,
},
["Zone"] = "1537 (Ironforge)",
}, -- [150]
{
["ExtraLine"] = "Exit Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
["Range"] = 19.7,
["TT"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
}, -- [151]
{
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
["Range"] = 19.06,
["TT"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
}, -- [152]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5046,
["x"] = -795.3,
},
["Range"] = 18.14,
["TT"] = {
["y"] = -5046,
["x"] = -795.3,
},
}, -- [153]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1580,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [154]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726,
["x"] = -1599.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [155]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
["Range"] = 57.44,
["TT"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
}, -- [156]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.1,
["x"] = -1600.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [157]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.4,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [158]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5638.2,
["x"] = -1520,
},
["Range"] = 20.46,
["TT"] = {
["y"] = -5638.2,
["x"] = -1520,
},
}, -- [159]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
["Range"] = 17.21,
["TT"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
}, -- [160]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
["Range"] = 21.63,
["TT"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
}, -- [161]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
["Range"] = 5.38,
["TT"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
}, -- [162]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
["Range"] = 11.84,
["TT"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
}, -- [163]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
["Range"] = 5.81,
["TT"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
}, -- [164]
{
["CRange"] = 353,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
["Range"] = 10.9,
["TT"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
}, -- [165]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.6,
["x"] = -2602.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [166]
{
["UpdMapID"] = 1,
},
},
["1-5Human-Warlock"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8933.9,
["x"] = -136.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [1]
{
["Done"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [2]
{
["PickUp"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [3]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8933.6,
["x"] = -136.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [4]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
["Range"] = 8.05,
["TT"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
}, -- [5]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
["Range"] = 8.09,
["TT"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
}, -- [6]
{
["Done"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [7]
{
["PickUp"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [8]
{
["Qpart"] = {
[7] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
["Fillers"] = {
[33] = {
["1"] = "1",
},
},
["Range"] = 28.22,
["TT"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
}, -- [9]
{
["Qpart"] = {
[33] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
["Range"] = 35.45,
["TT"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
}, -- [10]
{
["Done"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8868.7,
["x"] = -163.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [11]
{
["CRange"] = 7,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
["Range"] = 8.54,
["TT"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
}, -- [12]
{
["Done"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [13]
{
["PickUp"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [14]
{
["PickUp"] = {
3105,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -8902.4,
["x"] = -162.8,
},
},
{
["ExtraLine"] = "Train Abilitys and sell",
["TT"] = {
["y"] = -8933,
["x"] = -136.6,
},
["PickUp"] = {
18, -- [1]
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [17]
{
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
[1] = 3105,
},
["TT"] = {
["y"] = -8927,
["x"] = -195.2,
},
},
{
["PickUp"] = {
[1] = 1598,
},
["Zone"] = "12 (Elwynn Forest)",
["TT"] = {
["y"] = -8927,
["x"] = -195.2,
},
},
{
["Qpart"] = {
[1598] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8957.1,
["x"] = -432.8,
},
["Range"] = 0.16,
["TT"] = {
["y"] = -8957.1,
["x"] = -432.8,
},
},
{
["Zone"] = "12 (Elwynn Forest)",
["Done"] = {
1598,
},
["TT"] = {
["y"] = -8926.7,
["x"] = -195.6,
},
},
{
["Qpart"] = {
[18] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9039.9,
["x"] = -322.4,
},
["Range"] = 28.16,
["TT"] = {
["y"] = -9037.8,
["x"] = -320.6,
},
}, -- [18]
{
["Qpart"] = {
[15] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
["Range"] = 40.62,
["TT"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
}, -- [19]
{
["ExtraLine"] = "Sell",
["Done"] = {
18, -- [1]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [20]
{
["PickUp"] = {
3903, -- [1]
6, -- [2]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [21]
{
["Done"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [22]
{
["PickUp"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [23]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
["Range"] = 8.58,
["TT"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
}, -- [24]
{
["Qpart"] = {
[21] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
["Range"] = 13.68,
["TT"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
}, -- [25]
{
["Done"] = {
3903, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [26]
{
["PickUp"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [27]
{
["Qpart"] = {
[6] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
["Fillers"] = {
[3904] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
}, -- [28]
{
["Qpart"] = {
[3904] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
["Range"] = 39.95,
["TT"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
}, -- [29]
{
["Done"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [30]
{
["PickUp"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [31]
{
["Done"] = {
6, -- [1]
},
["TT"] = {
["y"] = -8933.8,
["x"] = -136.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [32]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
["Range"] = 4.4,
["TT"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
}, -- [33]
{
["Done"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [34]
{
["PickUp"] = {
54, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [35]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8901.8,
["x"] = -181.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [36]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044.4,
["x"] = -46.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [37]
{
["Done"] = {
54, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [38]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["UpdMapID"] = 1,
},
},
["5-12Human-Warlock"] = {
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["SetHS"] = 60,
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [42]
{
["ExtraLine"] = "Learn First Aid upstairs",
["CRange"] = 60,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
["Range"] = 3.12,
["TT"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
}, -- [43]
{
["PickUp"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.1,
["x"] = 72.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [44]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["TT"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["level"] = 6,
["Range"] = 50,
["Grind"] = 11951,
}, -- [45]
{
["PickUp"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9889.9,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [46]
{
["PickUp"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895,
["x"] = 332.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [47]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [48]
{
["PickUp"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [49]
{
["PickUp"] = {
106, -- [1]
},
["TT"] = {
["y"] = -10013.9,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [50]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
[86] = {
["1"] = "1",
},
},
["Done"] = {
106, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [51]
{
["PickUp"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [52]
{
["Fillers"] = {
[86] = {
["1"] = "1",
},
},
["Done"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [53]
{
["PickUp"] = {
107, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [54]
{
["Qpart"] = {
[86] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9916.6,
["x"] = 375,
},
["Range"] = 48.16,
["TT"] = {
["y"] = -9916.6,
["x"] = 375,
},
}, -- [55]
{
["Done"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [56]
{
["PickUp"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [57]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [58]
{
["PickUp"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [59]
{
["CRange"] = 87,
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9860.7,
["x"] = 174.2,
},
["Range"] = 10.76,
["TT"] = {
["y"] = -9861.9,
["x"] = 174.3,
},
}, -- [60]
{
["Qpart"] = {
[62] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
["Range"] = 4.02,
["TT"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
}, -- [61]
{
["Qpart"] = {
[87] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
["Range"] = 0.13,
["TT"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
}, -- [62]
{
["Qpart"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
["Range"] = 28.52,
["TT"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
}, -- [63]
{
["TT"] = {
["y"] = -9834.2,
["x"] = 214.5,
},
["UseHS"] = 87,
["Zone"] = "12 (Elwynn Forest)",
}, -- [64]
{
["Done"] = {
60, -- [1]
107, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [65]
{
["PickUp"] = {
112, -- [1]
61, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [66]
{
["Done"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [67]
{
["PickUp"] = {
40, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [68]
{
["Done"] = {
62, -- [1]
40, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [69]
{
["PickUp"] = {
35, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [70]
{
["ExtraLine"] = "Sell",
["CRange"] = 112,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
["Range"] = 9.02,
["TT"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
}, -- [71]
{
["Qpart"] = {
[112] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
["Range"] = 54.16,
["TT"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
}, -- [72]
{
["CRange"] = 76,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
["Range"] = 7.16,
["TT"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
}, -- [73]
{
["Qpart"] = {
[76] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
}, -- [74]
{
["TT"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["level"] = 8,
["Range"] = 58,
["Grind"] = 11951,
}, -- [75]
{
["Done"] = {
35, -- [1]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [76]
{
["PickUp"] = {
52, -- [1]
37, -- [2]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [77]
{
["PickUp"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [78]
{
["PickUp"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9470,
["x"] = -1289.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [79]
{
["ExtraLine"] = "Sell",
["CRange"] = 5545,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
["Range"] = 4.37,
["TT"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
}, -- [80]
{
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[5545] = {
["1"] = "1",
},
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
37, -- [1]
},
["TT"] = {
["y"] = -9336.1,
["x"] = -986.3,
},
}, -- [81]
{
["PickUp"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9336.6,
["x"] = -986.6,
},
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
}, -- [82]
{
["ExtraLine"] = "Click Rolf's corpse",
["Done"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [83]
{
["PickUp"] = {
71, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [84]
{
["Qpart"] = {
[5545] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
["Range"] = 61.14,
["TT"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
}, -- [85]
{
["Done"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9469.3,
["x"] = -1288.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [86]
{
["Qpart"] = {
[83] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
["Range"] = 39.97,
["TT"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
}, -- [87]
{
["Qpart"] = {
[88] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9778.6,
["x"] = -891.3,
},
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 17.28,
["TT"] = {
["y"] = -9777.8,
["x"] = -876.1,
},
}, -- [88]
{
["Qpart"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9641,
["x"] = -890.7,
},
["Range"] = 51.75,
["TT"] = {
["y"] = -9641,
["x"] = -890.7,
},
}, -- [89]
{
["Done"] = {
71, -- [1]
52, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [90]
{
["PickUp"] = {
39, -- [1]
109, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [91]
{
["Done"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9530.8,
["x"] = -1222.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [92]
{
["TT"] = {
["y"] = -9529.8,
["x"] = -1222.9,
},
["UseHS"] = 39,
["Zone"] = "12 (Elwynn Forest)",
}, -- [93]
{
["Done"] = {
112, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [94]
{
["PickUp"] = {
114, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["ExtraLine"] = "Wait a sec for quest",
["Zone"] = "12 (Elwynn Forest)",
}, -- [95]
{
["Done"] = {
39, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [96]
{
["PickUp"] = {
239, -- [1]
59, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [97]
{
["PickUp"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [98]
{
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9457,
["x"] = 87.5,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [99]
{
["Done"] = {
114, -- [1]
},
["TT"] = {
["y"] = -10014,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [101]
{
["Done"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895.2,
["x"] = 332.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [102]
{
["Done"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9889.6,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [103]
{
["Done"] = {
239, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [104]
{
["PickUp"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [105]
{
["PickUp"] = {
36, -- [1]
},
["TT"] = {
["y"] = -9852.4,
["x"] = 918.6,
},
["Zone"] = "40 (Westfall)",
}, -- [107]
{
["Done"] = {
36, -- [1]
},
["TT"] = {
["y"] = -10112.6,
["x"] = 1042.4,
},
["Zone"] = "40 (Westfall)",
}, -- [108]
{
["Done"] = {
109, -- [1]
},
["TT"] = {
["y"] = -10509.1,
["x"] = 1045.5,
},
["Zone"] = "40 (Westfall)",
}, -- [109]
{
["PickUp"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10500.8,
["x"] = 1022.5,
},
["Zone"] = "40 (Westfall)",
}, -- [110]
{
["Done"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [111]
{
["PickUp"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [112]
{
["UseFlightPath"] = 6281,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
}, -- [113]
{
["Done"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [114]
{
["PickUp"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [115]
{
["Done"] = {
61, -- [1]
},
["TT"] = {
["y"] = -8857.5,
["x"] = 625.4,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [124]
{
["ExtraLine"] = "visit weapons trainer",
["CRange"] = 6261,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
["Range"] = 3.6,
["TT"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
}, -- [125]
{
["ExtraLine"] = "Go to warlock trainer",
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8827.6,
["x"] = 682.3,
},
["Range"] = 10.28,
["TT"] = {
["y"] = -8827.6,
["x"] = 682.3,
},
},
{
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8881.7,
["x"] = 759.5,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -8881.7,
["x"] = 759.5,
},
},
{
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8939.5,
["x"] = 985.5,
},
["Range"] = 6.64,
["TT"] = {
["y"] = -8939.5,
["x"] = 985.5,
},
},
{
["ExtraLine"] = "go down in the basement",
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8969.8,
["x"] = 1018.6,
},
["Range"] = 5.41,
["TT"] = {
["y"] = -8969.8,
["x"] = 1018.6,
},
},
{
["PickUp"] = {
1688,
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8982.8,
["x"] = 1041.1,
},
},
{
["ExtraLine"] = "go back up",
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8968.9,
["x"] = 1019.5,
},
["Range"] = 4.49,
["TT"] = {
["y"] = -8968.9,
["x"] = 1019.5,
},
},
{
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8939.8,
["x"] = 984.3,
},
["Range"] = 9.63,
["TT"] = {
["y"] = -8939.8,
["x"] = 984.3,
},
},
{
["Done"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [126]
{
["PickUp"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [127]
{
["UseFlightPath"] = 6285,
["Name"] = "Sentinel Hill, Westfall",
["TT"] = {
["y"] = -8836,
["x"] = 490.8,
},
}, -- [128]
{
["Done"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -10500.7,
["x"] = 1021.8,
},
["Zone"] = "40 (Westfall)",
}, -- [129]
{
["Zone"] = "40 (Westfall)",
["Done"] = {
1688,
},
["TT"] = {
["y"] = -10502.5,
["x"] = 1024.8,
},
},
{
["Qpart"] = {
[1688] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9806.9,
["x"] = -930.5,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -9806.9,
["x"] = -930.5,
},
},
{
["ExtraLine"] = "Back to Stormwind",
["CRange"] = 1688,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9092.5,
["x"] = 416.1,
},
["Range"] = 33.42,
["TT"] = {
["y"] = -9092.5,
["x"] = 416.1,
},
},
{
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8834.1,
["x"] = 622.9,
},
["Range"] = 39.12,
["TT"] = {
["y"] = -8834.1,
["x"] = 622.9,
},
},
{
["ExtraLine"] = "To the warlock trainer",
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8828.4,
["x"] = 683.5,
},
["Range"] = 13.26,
["TT"] = {
["y"] = -8828.4,
["x"] = 683.5,
},
},
{
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8885.8,
["x"] = 758.4,
},
["Range"] = 19.39,
["TT"] = {
["y"] = -8885.8,
["x"] = 758.4,
},
},
{
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8940.7,
["x"] = 985.8,
},
["Range"] = 5.93,
["TT"] = {
["y"] = -8940.7,
["x"] = 985.8,
},
},
{
["ExtraLine"] = "In basement",
["CRange"] = 1688,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8965.7,
["x"] = 1014.4,
},
["Range"] = 4.03,
["TT"] = {
["y"] = -8965.7,
["x"] = 1014.4,
},
},
{
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
1688,
},
["TT"] = {
["y"] = -8983,
["x"] = 1041.5,
},
},
{
["PickUp"] = {
1689,
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8983,
["x"] = 1041.5,
},
},
{
["ExtraLine"] = "Continue down",
["CRange"] = 1689,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8992.6,
["x"] = 1046.4,
},
["Range"] = 3.68,
["TT"] = {
["y"] = -8992.6,
["x"] = 1046.4,
},
},
{
["Qpart"] = {
[1689] = {
["1"] = "1",
},
},
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8972.9,
["x"] = 1043.3,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -8972.9,
["x"] = 1043.3,
},
},
{
["ExtraLine"] = "go back up",
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
1689,
},
["TT"] = {
["y"] = -8983,
["x"] = 1041.2,
},
},
{
["ExtraLine"] = "Go to Elwynn",
["CRange"] = 11,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8969,
["x"] = 1018.7,
},
["Range"] = 2.3,
["TT"] = {
["y"] = -8969,
["x"] = 1018.7,
},
},
{
["ExtraLine"] = "Go to Elwynn",
["CRange"] = 11,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8887.6,
["x"] = 574.3,
},
["Range"] = 19.99,
["TT"] = {
["y"] = -8887.6,
["x"] = 574.3,
},
},
{
["ExtraLine"] = "Go to Elwynn",
["CRange"] = 11,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9104.3,
["x"] = 404.6,
},
["Range"] = 29.46,
["TT"] = {
["y"] = -9104.3,
["x"] = 404.6,
},
},
{
["ExtraLine"] = "if you find a group do Hogger",
["Qpart"] = {
[11] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9999.6,
["x"] = 623,
},
["LeaveQuests"] = {
12, -- [1]
102, -- [2]
151, -- [3]
64, -- [4]
9, -- [5]
22, -- [6]
38, -- [7]
},
["Range"] = 83.29,
["TT"] = {
["y"] = -9999.6,
["x"] = 623,
},
}, -- [131]
{
["Done"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.6,
["x"] = 694.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [132]
{
["PickUp"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.4,
["x"] = -1032.3,
},
["ExtraLine"] = "Die and sprit rez or run",
["Zone"] = "12 (Elwynn Forest)",
}, -- [133]
{
["Qpart"] = {
[46] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
["Range"] = 44.97,
["TT"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
}, -- [134]
{
["Done"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.3,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [135]
{
["Done"] = {
59, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [136]
{
["CRange"] = 244,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
["Range"] = 40.01,
["TT"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
}, -- [141]
{
["PickUp"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9609.3,
["x"] = -1902.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [142]
{
["Done"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [143]
{
["PickUp"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [144]
{
["UseFlightPath"] = 246,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -9435.1,
["x"] = -2234.8,
},
}, -- [145]
{
["Done"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [146]
{
["PickUp"] = {
353, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [147]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4839,
["x"] = -1318.5,
},
["Range"] = 49.27,
["TT"] = {
["y"] = -8352,
["x"] = 522.2,
},
}, -- [148]
{
["ExtraLine"] = "Weapon Master",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
["Range"] = 2.07,
["TT"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
}, -- [149]
{
["GetFP"] = 353,
["TT"] = {
["y"] = -4821.3,
["x"] = -1152.5,
},
["Zone"] = "1537 (Ironforge)",
}, -- [150]
{
["ExtraLine"] = "Exit Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
["Range"] = 19.7,
["TT"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
}, -- [151]
{
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
["Range"] = 19.06,
["TT"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
}, -- [152]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5046,
["x"] = -795.3,
},
["Range"] = 18.14,
["TT"] = {
["y"] = -5046,
["x"] = -795.3,
},
}, -- [153]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1580,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [154]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726,
["x"] = -1599.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [155]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
["Range"] = 57.44,
["TT"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
}, -- [156]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.1,
["x"] = -1600.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [157]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.4,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [158]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5638.2,
["x"] = -1520,
},
["Range"] = 20.46,
["TT"] = {
["y"] = -5638.2,
["x"] = -1520,
},
}, -- [159]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
["Range"] = 17.21,
["TT"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
}, -- [160]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
["Range"] = 21.63,
["TT"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
}, -- [161]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
["Range"] = 5.38,
["TT"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
}, -- [162]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
["Range"] = 11.84,
["TT"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
}, -- [163]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
["Range"] = 5.81,
["TT"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
}, -- [164]
{
["CRange"] = 353,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
["Range"] = 10.9,
["TT"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
}, -- [165]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.6,
["x"] = -2602.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [166]
{
["UpdMapID"] = 1,
},
},
["1-5Human-Warrior"] = {
{
["PickUp"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8933.9,
["x"] = -136.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [1]
{
["Done"] = {
783, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [2]
{
["PickUp"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.6,
["x"] = -162.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [3]
{
["PickUp"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8933.6,
["x"] = -136.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [4]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
["Range"] = 8.05,
["TT"] = {
["y"] = -8905.7,
["x"] = -135.8,
},
}, -- [5]
{
["CRange"] = 5261,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
["Range"] = 8.09,
["TT"] = {
["y"] = -8870.6,
["x"] = -150.2,
},
}, -- [6]
{
["Done"] = {
5261, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [7]
{
["PickUp"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8869.3,
["x"] = -162.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [8]
{
["Qpart"] = {
[7] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
["Fillers"] = {
[33] = {
["1"] = "1",
},
},
["Range"] = 28.22,
["TT"] = {
["y"] = -8783.3,
["x"] = -136.4,
},
}, -- [9]
{
["Qpart"] = {
[33] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
["Range"] = 35.45,
["TT"] = {
["y"] = -8855.2,
["x"] = -97.5,
},
}, -- [10]
{
["Done"] = {
33, -- [1]
},
["TT"] = {
["y"] = -8868.7,
["x"] = -163.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [11]
{
["CRange"] = 7,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
["Range"] = 8.54,
["TT"] = {
["y"] = -8913.9,
["x"] = -136.5,
},
}, -- [12]
{
["Done"] = {
7, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [13]
{
["PickUp"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [14]
{
["ExtraLine"] = "Class Quest",
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["PickUp"] = {
3100, -- [1]
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [15]
{
["ExtraLine"] = "Hand in Class Quest",
["Done"] = {
3100, -- [1]
},
["TT"] = {
["y"] = -8918.2,
["x"] = -208.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [16]
{
["ExtraLine"] = "Train Abilitys and sell",
["TT"] = {
["y"] = -8933,
["x"] = -136.6,
},
["PickUp"] = {
18, -- [1]
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [17]
{
["Qpart"] = {
[18] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9039.9,
["x"] = -322.4,
},
["Range"] = 28.16,
["TT"] = {
["y"] = -9037.8,
["x"] = -320.6,
},
}, -- [18]
{
["Qpart"] = {
[15] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
["Range"] = 40.62,
["TT"] = {
["y"] = -8789.5,
["x"] = -235.2,
},
}, -- [19]
{
["ExtraLine"] = "Sell",
["Done"] = {
18, -- [1]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [20]
{
["PickUp"] = {
3903, -- [1]
6, -- [2]
},
["TT"] = {
["y"] = -8933.7,
["x"] = -136.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [21]
{
["Done"] = {
15, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [22]
{
["PickUp"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [23]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
["Range"] = 8.58,
["TT"] = {
["y"] = -8904.3,
["x"] = -129.5,
},
}, -- [24]
{
["Qpart"] = {
[21] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
["Range"] = 13.68,
["TT"] = {
["y"] = -8673.8,
["x"] = -120.5,
},
}, -- [25]
{
["Done"] = {
3903, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [26]
{
["PickUp"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.3,
["x"] = -224,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [27]
{
["Qpart"] = {
[6] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
["Fillers"] = {
[3904] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = -9055.5,
["x"] = -460.3,
},
}, -- [28]
{
["Qpart"] = {
[3904] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
["Range"] = 39.95,
["TT"] = {
["y"] = -9069.7,
["x"] = -349.4,
},
}, -- [29]
{
["Done"] = {
3904, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [30]
{
["PickUp"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8850.7,
["x"] = -224.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [31]
{
["Done"] = {
6, -- [1]
},
["TT"] = {
["y"] = -8933.8,
["x"] = -136.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [32]
{
["CRange"] = 21,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
["Range"] = 4.4,
["TT"] = {
["y"] = -8911.6,
["x"] = -141.1,
},
}, -- [33]
{
["Done"] = {
21, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [34]
{
["PickUp"] = {
54, -- [1]
},
["TT"] = {
["y"] = -8902.5,
["x"] = -162.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [35]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
3905, -- [1]
},
["TT"] = {
["y"] = -8901.8,
["x"] = -181.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [36]
{
["PickUp"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9044.4,
["x"] = -46.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [37]
{
["Done"] = {
54, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [38]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["UpdMapID"] = 1,
},
},
["5-12Human-Warrior"] = {
{
["Done"] = {
2158, -- [1]
},
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [41]
{
["SetHS"] = 60,
["TT"] = {
["y"] = -9462.8,
["x"] = 15.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [42]
{
["ExtraLine"] = "Learn First Aid upstairs",
["CRange"] = 60,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
["Range"] = 3.12,
["TT"] = {
["y"] = -9478.3,
["x"] = 14.7,
},
}, -- [43]
{
["PickUp"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.1,
["x"] = 72.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [44]
{
["PickUp"] = {
62, -- [1]
},
["TT"] = {
["y"] = -9464.9,
["x"] = 73,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [39]
{
["PickUp"] = {
60, -- [1]
},
["TT"] = {
["y"] = -9461.1,
["x"] = 31.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [40]
{
["TT"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9792.4,
["x"] = 266.9,
},
["level"] = 6,
["Range"] = 50,
["Grind"] = 11951,
}, -- [45]
{
["PickUp"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9889.9,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [46]
{
["PickUp"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895,
["x"] = 332.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [47]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
85, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [48]
{
["PickUp"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9923.8,
["x"] = 38.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [49]
{
["PickUp"] = {
106, -- [1]
},
["TT"] = {
["y"] = -10013.9,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [50]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
[86] = {
["1"] = "1",
},
},
["Done"] = {
106, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [51]
{
["PickUp"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9929.9,
["x"] = 499.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [52]
{
["Fillers"] = {
[86] = {
["1"] = "1",
},
},
["Done"] = {
111, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [53]
{
["PickUp"] = {
107, -- [1]
},
["TT"] = {
["y"] = -9880.8,
["x"] = 322.6,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [54]
{
["Qpart"] = {
[86] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9916.6,
["x"] = 375,
},
["Range"] = 48.16,
["TT"] = {
["y"] = -9916.6,
["x"] = 375,
},
}, -- [55]
{
["Done"] = {
86, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [56]
{
["PickUp"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9889.7,
["x"] = 338.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [57]
{
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Done"] = {
84, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [58]
{
["PickUp"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9923.5,
["x"] = 38.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [59]
{
["CRange"] = 87,
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9860.7,
["x"] = 174.2,
},
["Range"] = 10.76,
["TT"] = {
["y"] = -9861.9,
["x"] = 174.3,
},
}, -- [60]
{
["Qpart"] = {
[62] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
["Range"] = 4.02,
["TT"] = {
["y"] = -9767.2,
["x"] = 154.5,
},
}, -- [61]
{
["Qpart"] = {
[87] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
["Range"] = 0.13,
["TT"] = {
["y"] = -9746.8,
["x"] = 88.5,
},
}, -- [62]
{
["Qpart"] = {
[60] = {
["1"] = "1",
},
[47] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
["Range"] = 28.52,
["TT"] = {
["y"] = -9851.2,
["x"] = 210.5,
},
}, -- [63]
{
["TT"] = {
["y"] = -9834.2,
["x"] = 214.5,
},
["UseHS"] = 87,
["Zone"] = "12 (Elwynn Forest)",
}, -- [64]
{
["Done"] = {
60, -- [1]
107, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [65]
{
["PickUp"] = {
112, -- [1]
61, -- [2]
},
["TT"] = {
["y"] = -9460.9,
["x"] = 32.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [66]
{
["Done"] = {
47, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [67]
{
["PickUp"] = {
40, -- [1]
},
["TT"] = {
["y"] = -9496.5,
["x"] = 72.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [68]
{
["Done"] = {
62, -- [1]
40, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [69]
{
["PickUp"] = {
35, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9466.5,
["x"] = 73.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [70]
{
["ExtraLine"] = "Sell",
["CRange"] = 112,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
["Range"] = 9.02,
["TT"] = {
["y"] = -9461.4,
["x"] = 92.6,
},
}, -- [71]
{
["Qpart"] = {
[112] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
["Range"] = 54.16,
["TT"] = {
["y"] = -9485.2,
["x"] = -212.3,
},
}, -- [72]
{
["CRange"] = 76,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
["Range"] = 7.16,
["TT"] = {
["y"] = -9187.7,
["x"] = -607.8,
},
}, -- [73]
{
["Qpart"] = {
[76] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -9096.6,
["x"] = -562.2,
},
}, -- [74]
{
["TT"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9500.1,
["x"] = -960.9,
},
["level"] = 8,
["Range"] = 58,
["Grind"] = 11951,
}, -- [75]
{
["Done"] = {
35, -- [1]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [76]
{
["PickUp"] = {
52, -- [1]
37, -- [2]
},
["TT"] = {
["y"] = -9610.1,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [77]
{
["PickUp"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [78]
{
["PickUp"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9470,
["x"] = -1289.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [79]
{
["ExtraLine"] = "Sell",
["CRange"] = 5545,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
["Range"] = 4.37,
["TT"] = {
["y"] = -9468.9,
["x"] = -1354.8,
},
}, -- [80]
{
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[5545] = {
["1"] = "1",
},
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Done"] = {
37, -- [1]
},
["TT"] = {
["y"] = -9336.1,
["x"] = -986.3,
},
}, -- [81]
{
["PickUp"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9336.6,
["x"] = -986.6,
},
["ExtraLine"] = "Click the half-eaten body",
["Zone"] = "12 (Elwynn Forest)",
}, -- [82]
{
["ExtraLine"] = "Click Rolf's corpse",
["Done"] = {
45, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [83]
{
["PickUp"] = {
71, -- [1]
},
["TT"] = {
["y"] = -9225.1,
["x"] = -1234.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [84]
{
["Qpart"] = {
[5545] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
["Range"] = 61.14,
["TT"] = {
["y"] = -9382.5,
["x"] = -1197.5,
},
}, -- [85]
{
["Done"] = {
5545, -- [1]
},
["TT"] = {
["y"] = -9469.3,
["x"] = -1288.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [86]
{
["Qpart"] = {
[83] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
["Range"] = 39.97,
["TT"] = {
["y"] = -9771.3,
["x"] = -1528.3,
},
}, -- [87]
{
["Qpart"] = {
[88] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9778.6,
["x"] = -891.3,
},
["Fillers"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 17.28,
["TT"] = {
["y"] = -9777.8,
["x"] = -876.1,
},
}, -- [88]
{
["Qpart"] = {
[52] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9641,
["x"] = -890.7,
},
["Range"] = 51.75,
["TT"] = {
["y"] = -9641,
["x"] = -890.7,
},
}, -- [89]
{
["Done"] = {
71, -- [1]
52, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [90]
{
["PickUp"] = {
39, -- [1]
109, -- [2]
},
["TT"] = {
["y"] = -9611.4,
["x"] = -1030.9,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [91]
{
["Done"] = {
83, -- [1]
},
["TT"] = {
["y"] = -9530.8,
["x"] = -1222.2,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [92]
{
["TT"] = {
["y"] = -9529.8,
["x"] = -1222.9,
},
["UseHS"] = 39,
["Zone"] = "12 (Elwynn Forest)",
}, -- [93]
{
["Done"] = {
112, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [94]
{
["PickUp"] = {
114, -- [1]
},
["TT"] = {
["y"] = -9460.4,
["x"] = 32.1,
},
["ExtraLine"] = "Wait a sec for quest",
["Zone"] = "12 (Elwynn Forest)",
}, -- [95]
{
["Done"] = {
39, -- [1]
76, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [96]
{
["PickUp"] = {
239, -- [1]
59, -- [2]
},
["TT"] = {
["y"] = -9465.6,
["x"] = 73.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [97]
{
["PickUp"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [98]
{
["ExtraLine"] = "Need lvl10 for Class quest",
["TT"] = {
["y"] = -9457,
["x"] = 87.5,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9457,
["x"] = 87.5,
},
["level"] = 10,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [99]
{
["PickUp"] = {
1638, -- [1]
},
["TT"] = {
["y"] = -9461.8,
["x"] = 109.3,
},
["ExtraLine"] = "Class Quest",
["Zone"] = "12 (Elwynn Forest)",
}, -- [100]
{
["Done"] = {
114, -- [1]
},
["TT"] = {
["y"] = -10014,
["x"] = 37.7,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [101]
{
["Done"] = {
88, -- [1]
},
["TT"] = {
["y"] = -9895.2,
["x"] = 332.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [102]
{
["Done"] = {
87, -- [1]
},
["TT"] = {
["y"] = -9889.6,
["x"] = 338.5,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [103]
{
["Done"] = {
239, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [104]
{
["PickUp"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.9,
["x"] = 694,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [105]
{
["PickUp"] = {
36, -- [1]
},
["TT"] = {
["y"] = -9852.4,
["x"] = 918.6,
},
["Zone"] = "40 (Westfall)",
}, -- [107]
{
["Done"] = {
36, -- [1]
},
["TT"] = {
["y"] = -10112.6,
["x"] = 1042.4,
},
["Zone"] = "40 (Westfall)",
}, -- [108]
{
["Done"] = {
109, -- [1]
},
["TT"] = {
["y"] = -10509.1,
["x"] = 1045.5,
},
["Zone"] = "40 (Westfall)",
}, -- [109]
{
["PickUp"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10500.8,
["x"] = 1022.5,
},
["Zone"] = "40 (Westfall)",
}, -- [110]
{
["Done"] = {
6181, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [111]
{
["PickUp"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
["Zone"] = "40 (Westfall)",
}, -- [112]
{
["UseFlightPath"] = 6281,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -10628.3,
["x"] = 1037.2,
},
}, -- [113]
{
["Done"] = {
6281, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [114]
{
["PickUp"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8704.6,
["x"] = 383.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [115]
{
["Done"] = {
1638, -- [1]
},
["TT"] = {
["y"] = -8613,
["x"] = 382.9,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [116]
{
["PickUp"] = {
1639, -- [1]
},
["TT"] = {
["y"] = -8613,
["x"] = 382.9,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [117]
{
["Done"] = {
1639, -- [1]
},
["TT"] = {
["y"] = -8604.5,
["x"] = 389.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [118]
{
["PickUp"] = {
1640, -- [1]
},
["TT"] = {
["y"] = -8604,
["x"] = 389.3,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [119]
{
["Done"] = {
1640, -- [1]
},
["TT"] = {
["y"] = -8605.2,
["x"] = 390.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [120]
{
["PickUp"] = {
1665, -- [1]
},
["TT"] = {
["y"] = -8605.2,
["x"] = 389.9,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [121]
{
["Done"] = {
1665, -- [1]
},
["TT"] = {
["y"] = -8612.8,
["x"] = 383.2,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [122]
{
["PickUp"] = {
1666, -- [1]
},
["TT"] = {
["y"] = -8612.8,
["x"] = 383.2,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [123]
{
["Done"] = {
61, -- [1]
},
["TT"] = {
["y"] = -8857.5,
["x"] = 625.4,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [124]
{
["ExtraLine"] = "visit weapons trainer",
["CRange"] = 6261,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
["Range"] = 3.6,
["TT"] = {
["y"] = -8796.4,
["x"] = 612.8,
},
}, -- [125]
{
["Done"] = {
6261, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [126]
{
["PickUp"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -8835.7,
["x"] = 490.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [127]
{
["UseFlightPath"] = 6285,
["Name"] = "Sentinel Hill, Westfall",
["TT"] = {
["y"] = -8836,
["x"] = 490.8,
},
}, -- [128]
{
["Done"] = {
6285, -- [1]
},
["TT"] = {
["y"] = -10500.7,
["x"] = 1021.8,
},
["Zone"] = "40 (Westfall)",
}, -- [129]
{
["CRange"] = 11,
["Zone"] = "40 (Westfall)",
["Trigger"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
["Range"] = 43.69,
["TT"] = {
["y"] = -10114.4,
["x"] = 739.9,
},
}, -- [130]
{
["ExtraLine"] = "if you find a group do Hogger",
["Qpart"] = {
[11] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9999.6,
["x"] = 623,
},
["LeaveQuests"] = {
12, -- [1]
102, -- [2]
151, -- [3]
64, -- [4]
9, -- [5]
22, -- [6]
38, -- [7]
},
["Range"] = 83.29,
["TT"] = {
["y"] = -9999.6,
["x"] = 623,
},
}, -- [131]
{
["Done"] = {
11, -- [1]
},
["TT"] = {
["y"] = -9662.6,
["x"] = 694.8,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [132]
{
["PickUp"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.4,
["x"] = -1032.3,
},
["ExtraLine"] = "Die and sprit rez or run",
["Zone"] = "12 (Elwynn Forest)",
}, -- [133]
{
["Qpart"] = {
[46] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
["Range"] = 44.97,
["TT"] = {
["y"] = -9281.2,
["x"] = -1169.1,
},
}, -- [134]
{
["Done"] = {
46, -- [1]
},
["TT"] = {
["y"] = -9610.3,
["x"] = -1032.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [135]
{
["Done"] = {
59, -- [1]
},
["TT"] = {
["y"] = -9532,
["x"] = -1222.1,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [136]
{
["Done"] = {
1666, -- [1]
},
["TT"] = {
["y"] = -9545.3,
["x"] = -1401.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [137]
{
["PickUp"] = {
1667, -- [1]
},
["TT"] = {
["y"] = -9545.3,
["x"] = -1401.3,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [138]
{
["ExtraLine"] = "Get Key from Dead-Tooth Jack and open chest",
["Qpart"] = {
[1667] = {
["1"] = "1",
},
},
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9765.9,
["x"] = -1565.6,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -9765.9,
["x"] = -1565.6,
},
}, -- [139]
{
["Done"] = {
1667, -- [1]
},
["TT"] = {
["y"] = -9546,
["x"] = -1401.4,
},
["Zone"] = "12 (Elwynn Forest)",
}, -- [140]
{
["CRange"] = 244,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
["Range"] = 40.01,
["TT"] = {
["y"] = -9630.3,
["x"] = -1650.4,
},
}, -- [141]
{
["PickUp"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9609.3,
["x"] = -1902.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [142]
{
["Done"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [143]
{
["PickUp"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444.3,
["x"] = -2238,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [144]
{
["UseFlightPath"] = 246,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -9435.1,
["x"] = -2234.8,
},
}, -- [145]
{
["Done"] = {
1097, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [146]
{
["PickUp"] = {
353, -- [1]
},
["TT"] = {
["y"] = -8387.1,
["x"] = 685.1,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [147]
{
["ExtraLine"] = "Go to Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4839,
["x"] = -1318.5,
},
["Range"] = 49.27,
["TT"] = {
["y"] = -8352,
["x"] = 522.2,
},
}, -- [148]
{
["ExtraLine"] = "Weapon Master",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
["Range"] = 2.07,
["TT"] = {
["y"] = -5041.9,
["x"] = -1197.9,
},
}, -- [149]
{
["GetFP"] = 353,
["TT"] = {
["y"] = -4821.3,
["x"] = -1152.5,
},
["Zone"] = "1537 (Ironforge)",
}, -- [150]
{
["ExtraLine"] = "Exit Ironforge",
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
["Range"] = 19.7,
["TT"] = {
["y"] = -4984.8,
["x"] = -956.7,
},
}, -- [151]
{
["CRange"] = 353,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
["Range"] = 19.06,
["TT"] = {
["y"] = -4983.8,
["x"] = -881.4,
},
}, -- [152]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5046,
["x"] = -795.3,
},
["Range"] = 18.14,
["TT"] = {
["y"] = -5046,
["x"] = -795.3,
},
}, -- [153]
{
["PickUp"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.7,
["x"] = -1580,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [154]
{
["PickUp"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726,
["x"] = -1599.7,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [155]
{
["Qpart"] = {
[433] = {
["1"] = "1",
},
[432] = {
["1"] = "1",
},
},
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
["Range"] = 57.44,
["TT"] = {
["y"] = -5752.6,
["x"] = -1677.1,
},
}, -- [156]
{
["Done"] = {
432, -- [1]
},
["TT"] = {
["y"] = -5726.1,
["x"] = -1600.1,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [157]
{
["Done"] = {
433, -- [1]
},
["TT"] = {
["y"] = -5714.4,
["x"] = -1579.8,
},
["Zone"] = "1 (Dun Morogh)",
}, -- [158]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5638.2,
["x"] = -1520,
},
["Range"] = 20.46,
["TT"] = {
["y"] = -5638.2,
["x"] = -1520,
},
}, -- [159]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
["Range"] = 17.21,
["TT"] = {
["y"] = -5514.2,
["x"] = -2030.7,
},
}, -- [160]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
["Range"] = 21.63,
["TT"] = {
["y"] = -5594.9,
["x"] = -2131.8,
},
}, -- [161]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
["Range"] = 5.38,
["TT"] = {
["y"] = -5630.5,
["x"] = -2252.1,
},
}, -- [162]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
["Range"] = 11.84,
["TT"] = {
["y"] = -5561.9,
["x"] = -2346.3,
},
}, -- [163]
{
["CRange"] = 353,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
["Range"] = 5.81,
["TT"] = {
["y"] = -5564.1,
["x"] = -2446.9,
},
}, -- [164]
{
["CRange"] = 353,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
["Range"] = 10.9,
["TT"] = {
["y"] = -5649.7,
["x"] = -2543.1,
},
}, -- [165]
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5831.6,
["x"] = -2602.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [166]
{
["UpdMapID"] = 1,
},
},
["12-13Human-LochModan-Darkshore"] = {
{
["PickUp"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.8,
["x"] = -2602.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [1]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5885.3,
["x"] = -2640.5,
},
["Range"] = 7.35,
["TT"] = {
["y"] = -5885.3,
["x"] = -2640.5,
},
}, -- [2]
{
["PickUp"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5842.8,
["x"] = -2634.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [3]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5782,
["x"] = -2636.4,
},
["Range"] = 15.8,
["TT"] = {
["y"] = -5782,
["x"] = -2636.4,
},
}, -- [4]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5699,
["x"] = -2783.3,
},
["Range"] = 28.25,
["TT"] = {
["y"] = -5699,
["x"] = -2783.3,
},
}, -- [5]
{
["Qpart"] = {
[224] = {
["1"] = "1",
["2"] = "2",
},
[267] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5844.5,
["x"] = -2890.1,
},
["Range"] = 77.31,
["TT"] = {
["y"] = -5844.5,
["x"] = -2890.1,
},
}, -- [6]
{
["CRange"] = 224,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5708.3,
["x"] = -2753.3,
},
["Range"] = 27.77,
["TT"] = {
["y"] = -5708.3,
["x"] = -2753.3,
},
}, -- [7]
{
["Done"] = {
224, -- [1]
},
["TT"] = {
["y"] = -5832.9,
["x"] = -2602.4,
},
["Zone"] = "38 (Loch Modan)",
}, -- [8]
{
["Done"] = {
267, -- [1]
},
["TT"] = {
["y"] = -5843,
["x"] = -2634.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [9]
{
["CRange"] = 237,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5787.2,
["x"] = -2631.3,
},
["Range"] = 15.1,
["TT"] = {
["y"] = -5787.2,
["x"] = -2631.3,
},
}, -- [10]
{
["CRange"] = 237,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5683.9,
["x"] = -2761.8,
},
["Range"] = 19.78,
["TT"] = {
["y"] = -5683.9,
["x"] = -2761.8,
},
}, -- [11]
{
["ExtraLine"] = "He Patrols",
["TT"] = {
["y"] = -5352.8,
["x"] = -2959.3,
},
["PickUp"] = {
416, -- [1]
1339, -- [2]
},
["Zone"] = "38 (Loch Modan)",
}, -- [12]
{
["CRange"] = 416,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5366.1,
["x"] = -2962,
},
["Range"] = 4.44,
["TT"] = {
["y"] = -5366.1,
["x"] = -2962,
},
}, -- [13]
{
["SetHS"] = 416,
["TT"] = {
["y"] = -5378.5,
["x"] = -2973.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.2,
["x"] = -2954.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
353, -- [1]
1339, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
307, -- [1]
1338, -- [2]
},
["TT"] = {
["y"] = -4826,
["x"] = -2676.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -4811.5,
["x"] = -2899,
},
["Range"] = 40.7,
["TT"] = {
["y"] = -4811.5,
["x"] = -2899,
},
}, -- [18]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4838,
["x"] = -2972.8,
},
["Range"] = 13.73,
["TT"] = {
["y"] = -4838,
["x"] = -2972.8,
},
}, -- [19]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Fillers"] = {
[416] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
["Range"] = 26.73,
["TT"] = {
["y"] = -4880.6,
["x"] = -2973.1,
},
}, -- [20]
{
["Qpart"] = {
[416] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
["Range"] = 60.29,
["TT"] = {
["y"] = -4770.1,
["x"] = -2968.5,
},
}, -- [21]
{
["Fillers"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["Qpart"] = {
[418] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040,
["x"] = -2893.7,
},
["Range"] = 135.78,
["TT"] = {
["y"] = -5041.7,
["x"] = -2895.3,
},
}, -- [23]
{
["ExtraLine"] = "He patrols",
["Done"] = {
416, -- [1]
},
["TT"] = {
["y"] = -5351.3,
["x"] = -2962.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["ExtraLine"] = "In the Inn",
["Done"] = {
418, -- [1]
},
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [25]
{
["TT"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -5391.1,
["x"] = -2954.9,
},
["level"] = 12,
["Range"] = 1442.15,
["Grind"] = 11951,
}, -- [26]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 246,
["TT"] = {
["y"] = -5424.7,
["x"] = -2929.9,
},
}, -- [27]
{
["ExtraLine"] = "Learn New Abilitys / FirstAid / Weapon Master",
["UseFlightPath"] = 246,
["Name"] = "Thelsamar, Loch Modan",
["ExtraLine2"] = "then use flightpath back",
["TT"] = {
["y"] = -4821.2,
["x"] = -1152.5,
},
}, -- [28]
{
["ExtraLine"] = "Time to go to Darkshore",
["CRange"] = 246,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
["Range"] = 18.74,
["TT"] = {
["y"] = -4676.4,
["x"] = -2699.3,
},
}, -- [29]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
["Range"] = 15.88,
["TT"] = {
["y"] = -4486.8,
["x"] = -2690.4,
},
}, -- [30]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
["Range"] = 9.27,
["TT"] = {
["y"] = -4449.7,
["x"] = -2668.7,
},
}, -- [31]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
["Range"] = 10.57,
["TT"] = {
["y"] = -4424.5,
["x"] = -2481.7,
},
}, -- [32]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -4307.6,
["x"] = -2464.9,
},
}, -- [33]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4120.8,
["x"] = -2462,
},
["Range"] = 5.02,
["TT"] = {
["y"] = -4120.8,
["x"] = -2462,
},
}, -- [34]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
["Range"] = 24.08,
["TT"] = {
["y"] = -4084.1,
["x"] = -2629.4,
},
}, -- [35]
{
["ExtraLine"] = "Die and spirit rez",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
["Range"] = 135.74,
["TT"] = {
["y"] = -3284.9,
["x"] = -2419.9,
},
}, -- [36]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
["Range"] = 45.79,
["TT"] = {
["y"] = -3181.9,
["x"] = -1928.6,
},
}, -- [37]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
["Range"] = 42.44,
["TT"] = {
["y"] = -3533.3,
["x"] = -901.4,
},
}, -- [38]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -3664.7,
["x"] = -834.7,
},
}, -- [39]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3711,
["x"] = -852.7,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -3711,
["x"] = -852.7,
},
}, -- [40]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.3,
},
["Zone"] = "11 (Wetlands)",
}, -- [41]
{
["ExtraLine"] = "go to Darkshore",
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
["Range"] = 9.88,
["TT"] = {
["y"] = -3741.6,
["x"] = -713.1,
},
}, -- [42]
{
["CRange"] = 246,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
["Range"] = 6.54,
["TT"] = {
["y"] = -3759.8,
["x"] = -639.8,
},
}, -- [43]
{
["ExtraLine"] = "Use Boat to Darkshore",
["CRange"] = 246,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6011,
["x"] = 811.1,
},
["Range"] = 396.18,
["TT"] = {
["y"] = -3721.9,
["x"] = -582,
},
}, -- [44]
{
["PickUp"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6426.3,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["PickUp"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["GetFP"] = 3524,
["TT"] = {
["y"] = 6343.3,
["x"] = 561.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 3524,
["TT"] = {
["y"] = 6407.7,
["x"] = 518.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6407.2,
["x"] = 520.4,
},
["PickUp"] = {
983, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.4,
["x"] = 497.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["PickUp"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6438.1,
["x"] = 472.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["PickUp"] = {
958, -- [1]
954, -- [2]
},
["TT"] = {
["y"] = 6580.5,
["x"] = 492.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["PickUp"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6438,
["x"] = 398.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["PickUp"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6435,
["x"] = 363.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Qpart"] = {
[3524] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6113.7,
["x"] = 559.7,
},
}, -- [10]
{
["Fillers"] = {
[983] = {
["1"] = "1",
},
},
["Done"] = {
3524, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6341.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["UpdMapID"] = 1,
},
},
---------------------------------- Human Ends ---------------------
--------- 12-17 Darkshore ---
["12-17Darkshore"] = {
{
["PickUp"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6343,
["x"] = 542.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [1]
{
["Qpart"] = {
[983] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6212.9,
["x"] = 567.9,
},
["Range"] = 63.03,
["TT"] = {
["y"] = 6212.9,
["x"] = 567.9,
},
}, -- [2]
{
["Done"] = {
983, -- [1]
},
["TT"] = {
["y"] = 6313.3,
["x"] = 540.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["PickUp"] = {
1001, -- [1]
},
["TT"] = {
["y"] = 6313.3,
["x"] = 540.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["Qpart"] = {
[4681] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Fillers"] = {
[1001] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 6314.5,
["x"] = 854.9,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 6314.5,
["x"] = 854.9,
},
}, -- [5]
{
["Qpart"] = {
[1001] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6605.7,
["x"] = 689.6,
},
["Range"] = 110.21,
["TT"] = {
["y"] = 6605.7,
["x"] = 689.6,
},
}, -- [6]
{
["Done"] = {
4681, -- [1]
},
["TT"] = {
["y"] = 6342.7,
["x"] = 543.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [7]
{
["ExtraLine"] = "Sell",
["CRange"] = 1001,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6407.2,
["x"] = 522,
},
["Range"] = 32.31,
["TT"] = {
["y"] = 6407.2,
["x"] = 522,
},
}, -- [8]
{
["PickUp"] = {
4723, -- [1]
},
["TT"] = {
["y"] = 6952.9,
["x"] = 197.5,
},
["ExtraLine"] = "Click Sea Creature",
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["Done"] = {
1001, -- [1]
},
["TT"] = {
["y"] = 7082.7,
["x"] = 193.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [10]
{
["PickUp"] = {
1002, -- [1]
},
["TT"] = {
["y"] = 7082.7,
["x"] = 193.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["Fillers"] = {
[1002] = {
["1"] = "1",
},
},
["Done"] = {
954, -- [1]
},
["TT"] = {
["y"] = 6747.9,
["x"] = 47.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [12]
{
["PickUp"] = {
955, -- [1]
},
["TT"] = {
["y"] = 6747.9,
["x"] = 47.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [13]
{
["Qpart"] = {
[955] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6712.8,
["x"] = -119.7,
},
["Range"] = 127.46,
["TT"] = {
["y"] = 6712.8,
["x"] = -119.7,
},
}, -- [14]
{
["Done"] = {
955, -- [1]
},
["TT"] = {
["y"] = 6748.3,
["x"] = 48,
},
["Zone"] = "148 (Darkshore)",
}, -- [15]
{
["PickUp"] = {
956, -- [1]
},
["TT"] = {
["y"] = 6748.3,
["x"] = 48,
},
["Zone"] = "148 (Darkshore)",
}, -- [16]
{
["Qpart"] = {
[956] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6708.3,
["x"] = -118.4,
},
["Range"] = 124.87,
["TT"] = {
["y"] = 6708.3,
["x"] = -118.4,
},
}, -- [17]
{
["Done"] = {
956, -- [1]
},
["TT"] = {
["y"] = 6748.5,
["x"] = 48.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [18]
{
["PickUp"] = {
957, -- [1]
},
["TT"] = {
["y"] = 6748.5,
["x"] = 48.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [19]
{
["Qpart"] = {
[4811] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6207.4,
["x"] = -159.2,
},
["Range"] = 0.12,
["TT"] = {
["y"] = 6207.4,
["x"] = -159.2,
},
}, -- [20]
{
["Qpart"] = {
[984] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 5986.8,
["x"] = 325.2,
},
["Range"] = 0.15,
["TT"] = {
["y"] = 5986.8,
["x"] = 325.2,
},
}, -- [21]
{
["PickUp"] = {
953, -- [1]
},
["TT"] = {
["y"] = 5725.4,
["x"] = 301.8,
},
["Zone"] = "148 (Darkshore)",
}, -- [22]
{
["Qpart"] = {
[953] = {
["2"] = "2",
},
},
["Trigger"] = {
["y"] = 5575.2,
["x"] = 147.4,
},
["Fillers"] = {
[958] = {
["1"] = "1",
},
[963] = {
["1"] = "1",
},
},
["Range"] = 0.13,
["TT"] = {
["y"] = 5575.2,
["x"] = 147.4,
},
}, -- [23]
{
["Qpart"] = {
[957] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 5633.8,
["x"] = 166.2,
},
["Fillers"] = {
[958] = {
["1"] = "1",
},
[963] = {
["1"] = "1",
},
},
["Range"] = 0.9,
["TT"] = {
["y"] = 5633.8,
["x"] = 166.2,
},
}, -- [24]
{
["ExtraLine"] = "Lookout for Anaya Dawnrunner (she is patroling)",
["Qpart"] = {
[953] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 5770.1,
["x"] = 105.2,
},
["Fillers"] = {
[958] = {
["1"] = "1",
},
[963] = {
["1"] = "1",
},
},
["Range"] = 1.56,
["TT"] = {
["y"] = 5770.1,
["x"] = 105.2,
},
}, -- [25]
{
["ExtraLine"] = "Kill Anaya Dawnrunner (she's a nightelf)",
["Qpart"] = {
[963] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 5650.4,
["x"] = 196.4,
},
["Fillers"] = {
[958] = {
["1"] = "1",
},
},
["Range"] = 78.33,
["TT"] = {
["y"] = 5650.4,
["x"] = 196.4,
},
}, -- [26]
{
["Trigger"] = {
["y"] = 5650.8,
["x"] = 196.4,
},
["Qpart"] = {
[958] = {
["1"] = "1",
},
},
["Range"] = 121.06,
["TT"] = {
["y"] = 5650.8,
["x"] = 196.4,
},
}, -- [27]
{
["ExtraLine"] = "Grind till 6.2k into lvl13 at the Highborne(here) or north at the moonkins",
["TT"] = {
["y"] = 5650.8,
["x"] = 196.4,
},
["xp"] = 6200,
["Trigger"] = {
["y"] = 5650.8,
["x"] = 196.4,
},
["level"] = 13,
["Range"] = 9042.15,
["Grind"] = 4722,
}, -- [28]
{
["Done"] = {
953, -- [1]
},
["TT"] = {
["y"] = 5724.8,
["x"] = 301.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [29]
{
["ExtraLine"] = "Agro a Rabid Bear use trap and move bear thru",
["Qpart"] = {
[2118] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 5700.7,
["x"] = 390.7,
},
["Button"] = 7586,
["Range"] = 71.04,
["TT"] = {
["y"] = 5700.7,
["x"] = 390.7,
},
}, -- [30]
{
["TT"] = {
["y"] = 5704.2,
["x"] = 322.8,
},
["UseHS"] = 963,
["Zone"] = "148 (Darkshore)",
}, -- [31]
{
["Done"] = {
963, -- [1]
},
["TT"] = {
["y"] = 6425.9,
["x"] = 600.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [32]
{
["Done"] = {
4811, -- [1]
},
["TT"] = {
["y"] = 6437.5,
["x"] = 473.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [33]
{
["PickUp"] = {
4812, -- [1]
},
["TT"] = {
["y"] = 6437.5,
["x"] = 473.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [34]
{
["ExtraLine"] = "Fill Tube in Moonwell",
["Qpart"] = {
[4812] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6409.4,
["x"] = 466.6,
},
["Button"] = 14338,
["Range"] = 0.14,
["TT"] = {
["y"] = 6409.4,
["x"] = 466.6,
},
}, -- [35]
{
["Done"] = {
2118, -- [1]
},
["TT"] = {
["y"] = 6437.7,
["x"] = 397.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [36]
{
["PickUp"] = {
2138, -- [1]
},
["TT"] = {
["y"] = 6437.7,
["x"] = 397.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [37]
{
["Done"] = {
984, -- [1]
},
["TT"] = {
["y"] = 6434.6,
["x"] = 362.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [38]
{
["PickUp"] = {
985, -- [1]
},
["TT"] = {
["y"] = 6434.6,
["x"] = 362.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [39]
{
["PickUp"] = {
4761, -- [1]
},
["TT"] = {
["y"] = 6434.6,
["x"] = 362.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [40]
{
["ExtraLine"] = "Upstairs",
["TT"] = {
["y"] = 6431.1,
["x"] = 384.2,
},
["PickUp"] = {
965, -- [1]
},
["Zone"] = "148 (Darkshore)",
}, -- [41]
{
["PickUp"] = {
982, -- [1]
},
["TT"] = {
["y"] = 6534.9,
["x"] = 445,
},
["Zone"] = "148 (Darkshore)",
}, -- [42]
{
["Done"] = {
4761, -- [1]
958, -- [2]
},
["TT"] = {
["y"] = 6579.9,
["x"] = 491.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [43]
{
["PickUp"] = {
4762, -- [1]
},
["TT"] = {
["y"] = 6579.9,
["x"] = 491.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [44]
{
["Done"] = {
4723, -- [1]
},
["TT"] = {
["y"] = 6342.8,
["x"] = 543.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [45]
{
["Done"] = {
957, -- [1]
},
["TT"] = {
["y"] = 6748.4,
["x"] = 47.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [46]
{
["ExtraLine"] = "Loot chest in boat",
["Qpart"] = {
[982] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7074.9,
["x"] = 436.8,
},
["Fillers"] = {
[1002] = {
["1"] = "1",
},
},
["Range"] = 0.14,
["TT"] = {
["y"] = 7074.9,
["x"] = 436.8,
},
}, -- [47]
{
["ExtraLine"] = "Loot chest in boat",
["Qpart"] = {
[982] = {
["2"] = "2",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7135,
["x"] = 345.3,
},
["Range"] = 0.11,
["TT"] = {
["y"] = 7135,
["x"] = 345.3,
},
}, -- [48]
{
["ExtraLine"] = "Click turtle leg",
["Zone"] = "148 (Darkshore)",
["Fillers"] = {
[2138] = {
["1"] = "1",
},
[1002] = {
["1"] = "1",
},
},
["PickUp"] = {
4725, -- [1]
},
["TT"] = {
["y"] = 7431.3,
["x"] = 47.6,
},
}, -- [49]
{
["Qpart"] = {
[1002] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Fillers"] = {
[2138] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 7184.2,
["x"] = -125.5,
},
["Range"] = 188.13,
["TT"] = {
["y"] = 7184.2,
["x"] = -125.5,
},
}, -- [50]
{
["Fillers"] = {
[2138] = {
["1"] = "1",
},
},
["Done"] = {
1002, -- [1]
},
["TT"] = {
["y"] = 7260.1,
["x"] = -416.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [51]
{
["PickUp"] = {
1003, -- [1]
},
["TT"] = {
["y"] = 7260.1,
["x"] = -416.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [52]
{
["ExtraLine"] = "Use the \"Empty Sampling Tube\" here!",
["Qpart"] = {
[4762] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7223.5,
["x"] = -381.2,
},
["Button"] = 12350,
["Range"] = 0.15,
["TT"] = {
["y"] = 7223.5,
["x"] = -381.2,
},
}, -- [53]
{
["CRange"] = 947,
["Zone"] = "148 (Darkshore)",
["Fillers"] = {
[2138] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 6945.4,
["x"] = -643.7,
},
["Range"] = 22.29,
["TT"] = {
["y"] = 6945.4,
["x"] = -643.7,
},
}, -- [54]
{
["Qpart"] = {
[947] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6849.9,
["x"] = -677.4,
},
["Range"] = 38.1,
["TT"] = {
["y"] = 6849.9,
["x"] = -677.4,
},
}, -- [55]
{
["CRange"] = 947,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6878.5,
["x"] = -638.9,
},
["Range"] = 20.22,
["TT"] = {
["y"] = 6878.5,
["x"] = -638.9,
},
}, -- [56]
{
["Done"] = {
4812, -- [1]
},
["TT"] = {
["y"] = 6207.5,
["x"] = -161.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [57]
{
["PickUp"] = {
4813, -- [1]
},
["TT"] = {
["y"] = 6207.5,
["x"] = -161.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [58]
{
["Qpart"] = {
[985] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 5979.5,
["x"] = 330.5,
},
["Range"] = 55.16,
["TT"] = {
["y"] = 5979.5,
["x"] = 330.5,
},
}, -- [59]
{
["PickUp"] = {
4722, -- [1]
},
["TT"] = {
["y"] = 5619,
["x"] = 508.9,
},
["Fillers"] = {
[2138] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
}, -- [60]
{
["PickUp"] = {
4728, -- [1]
},
["TT"] = {
["y"] = 5240.4,
["x"] = 581.2,
},
["Fillers"] = {
[2138] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
}, -- [61]
{
["Qpart"] = {
[2138] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 5408.7,
["x"] = 373.9,
},
["Fillers"] = {
[1003] = {
["1"] = "1",
},
},
["Range"] = 115.5,
["TT"] = {
["y"] = 5408.7,
["x"] = 373.9,
},
}, -- [62]
{
["Qpart"] = {
[1003] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4830.8,
["x"] = 364.8,
},
["Range"] = 119.2,
["TT"] = {
["y"] = 4830.8,
["x"] = 364.8,
},
}, -- [63]
{
["Done"] = {
1003, -- [1]
},
["TT"] = {
["y"] = 4815,
["x"] = 229.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [64]
{
["TT"] = {
["y"] = 4815,
["x"] = 229.7,
},
["UseHS"] = 4728,
["Zone"] = "148 (Darkshore)",
}, -- [65]
{
["Done"] = {
4725, -- [1]
4728, -- [2]
4722, -- [3]
},
["TT"] = {
["y"] = 6342.7,
["x"] = 543.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [66]
{
["PickUp"] = {
1138, -- [1]
},
["TT"] = {
["y"] = 6371.1,
["x"] = 576.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [67]
{
["Done"] = {
947, -- [1]
},
["TT"] = {
["y"] = 6427.6,
["x"] = 496.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [68]
{
["PickUp"] = {
948, -- [1]
},
["TT"] = {
["y"] = 6427.6,
["x"] = 496.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [69]
{
["Done"] = {
4813, -- [1]
},
["TT"] = {
["y"] = 6438.2,
["x"] = 472.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [70]
{
["PickUp"] = {
729, -- [1]
},
["TT"] = {
["y"] = 6504.2,
["x"] = 487.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [71]
{
["Done"] = {
4762, -- [1]
},
["TT"] = {
["y"] = 6580.3,
["x"] = 491.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [72]
{
["PickUp"] = {
4763, -- [1]
},
["TT"] = {
["y"] = 6580.3,
["x"] = 491.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [73]
{
["Done"] = {
982, -- [1]
},
["TT"] = {
["y"] = 6534.9,
["x"] = 445.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [74]
{
["Done"] = {
2138, -- [1]
},
["TT"] = {
["y"] = 6437.4,
["x"] = 397.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [75]
{
["PickUp"] = {
2139, -- [1]
},
["TT"] = {
["y"] = 6437.4,
["x"] = 397.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [76]
{
["Done"] = {
985, -- [1]
},
["TT"] = {
["y"] = 6434.2,
["x"] = 362.8,
},
["Zone"] = "148 (Darkshore)",
}, -- [77]
{
["PickUp"] = {
986, -- [1]
},
["TT"] = {
["y"] = 6434.2,
["x"] = 362.8,
},
["Zone"] = "148 (Darkshore)",
}, -- [78]
{
["Trigger"] = {
["y"] = 6409.4,
["x"] = 466.7,
},
["Ammount"] = 1,
["Range"] = 4.41,
["ExtraQpart"] = "Filled Cleansing Bowl",
["ExtraLine"] = "Use \"Empty Cleansing Bowl\" while standing in the moonwell.",
["ItemID"] = 12347,
["ItemID3"] = 1,
["Button"] = 12346,
["Qid"] = 4763,
["ItemID2"] = 4763,
["TT"] = {
["y"] = 6409.4,
["x"] = 466.7,
},
}, -- [79]
{
["CRange"] = 4763,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6330.7,
["x"] = 317.7,
},
["Range"] = 44.89,
["TT"] = {
["y"] = 6330.7,
["x"] = 317.7,
},
}, -- [80]
{
["ShowObjectOnMap3"] = 1,
["Trigger"] = {
["y"] = 6805.5,
["x"] = -376.5,
},
["Ammount"] = 1,
["Range"] = 0.12,
["ExtraQpart"] = "Blackwood Grain Stores",
["ExtraLine"] = "Loot the \"Blackwood Grain Stores\"",
["ShowObjectOnMap2"] = 4763,
["ItemID"] = 12342,
["ItemID2"] = 4763,
["ItemID3"] = 1,
["Qid"] = 4763,
["ShowObjectOnMap"] = 175331,
["TT"] = {
["y"] = 6805.5,
["x"] = -376.5,
},
}, -- [81]
{
["CRange"] = 2139,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6746.5,
["x"] = -502,
},
["Range"] = 15.1,
["TT"] = {
["y"] = 6746.5,
["x"] = -502,
},
}, -- [82]
{
["Qpart"] = {
[2139] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6662.7,
["x"] = -430.5,
},
["Range"] = 0.08,
["TT"] = {
["y"] = 6662.7,
["x"] = -430.5,
},
}, -- [83]
{
["ShowObjectOnMap3"] = 1,
["Trigger"] = {
["y"] = 6870.6,
["x"] = -450,
},
["Ammount"] = 1,
["Range"] = 0.61,
["ExtraQpart"] = "Blackwood Nut Stores",
["ExtraLine"] = "Loot the \"Blackwood Nut Stores\"",
["ShowObjectOnMap2"] = 4763,
["ItemID"] = 12343,
["ItemID2"] = 4763,
["ItemID3"] = 1,
["Qid"] = 4763,
["ShowObjectOnMap"] = 175329,
["TT"] = {
["y"] = 6870.6,
["x"] = -450,
},
}, -- [84]
{
["ShowObjectOnMap3"] = 1,
["Trigger"] = {
["y"] = 6875.6,
["x"] = -521.7,
},
["Ammount"] = 1,
["Range"] = 1.07,
["ExtraQpart"] = "Blackwood Fruit Stores",
["ExtraLine"] = "Loot the \"Blackwood Fruit Stores\"",
["ShowObjectOnMap2"] = 4763,
["ItemID"] = 12341,
["ItemID2"] = 4763,
["ItemID3"] = 1,
["Qid"] = 4763,
["ShowObjectOnMap"] = 175330,
["TT"] = {
["y"] = 6875.6,
["x"] = -521.7,
},
}, -- [85]
{
["Trigger"] = {
["y"] = 6877.9,
["x"] = -491.6,
},
["Ammount"] = 1,
["Range"] = 0.07,
["ExtraQpart"] = "Talisman of Corruption",
["ExtraLine"] = "Use \"Filled Cleansing Bowl\"",
["ItemID3"] = 1,
["ItemID"] = 12355,
["ExtraLine2"] = "Loot Xabraxxis' Demon Bag ON THE GROUND after he dies",
["Button"] = 12347,
["Qid"] = 4763,
["ItemID2"] = 4763,
["TT"] = {
["y"] = 6877.9,
["x"] = -491.6,
},
}, -- [86]
{
["Done"] = {
965, -- [1]
},
["TT"] = {
["y"] = 7246.7,
["x"] = -658.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [87]
{
["PickUp"] = {
966, -- [1]
},
["TT"] = {
["y"] = 7246.7,
["x"] = -658.5,
},
["Zone"] = "148 (Darkshore)",
}, -- [88]
{
["Qpart"] = {
[966] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7152.9,
["x"] = -710.6,
},
["Range"] = 52.68,
["TT"] = {
["y"] = 7154.2,
["x"] = -712.2,
},
}, -- [89]
{
["Done"] = {
966, -- [1]
},
["TT"] = {
["y"] = 7246.2,
["x"] = -658.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [90]
{
["PickUp"] = {
967, -- [1]
},
["TT"] = {
["y"] = 7246.2,
["x"] = -658.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [91]
{
["PickUp"] = {
4727, -- [1]
},
["TT"] = {
["y"] = 7542.7,
["x"] = -540.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [92]
{
["Qpart"] = {
[1138] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7442.1,
["x"] = -272.5,
},
["Range"] = 79.53,
["TT"] = {
["y"] = 7442.1,
["x"] = -272.5,
},
}, -- [93]
{
["ExtraLine"] = "Hearthstone or die and spirit rez",
["Done"] = {
4763, -- [1]
},
["TT"] = {
["y"] = 6580.2,
["x"] = 490.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [94]
{
["Done"] = {
2139, -- [1]
},
["TT"] = {
["y"] = 6437.3,
["x"] = 398.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [95]
{
["Done"] = {
4727, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 542.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [96]
{
["Done"] = {
1138, -- [1]
},
["TT"] = {
["y"] = 6371.6,
["x"] = 577.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [97]
{
["ExtraLine"] = "sell",
["CRange"] = 967,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6405.9,
["x"] = 527.9,
},
["Range"] = 5.41,
["TT"] = {
["y"] = 6405.9,
["x"] = 527.9,
},
}, -- [98]
{
["ExtraLine"] = "Time to go to Menethil",
["CRange"] = 967,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6492.2,
["x"] = 791,
},
["Range"] = 17.07,
["TT"] = {
["y"] = 6492.2,
["x"] = 791,
},
}, -- [99]
{
["ExtraLine"] = "Go with South Boat",
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3247.4,
["x"] = -444,
},
["Range"] = 248.6,
["TT"] = {
["y"] = 6420.5,
["x"] = 818.8,
},
}, -- [100]
{
["UpdMapID"] = 1,
},
},
--------- 17 Wetlands NightElf ---
["17-NightElf-WetlandsRun"] = {
{
["ExtraLine"] = "Hearthstone or die and spirit rez",
["Done"] = {
4763, -- [1]
},
["TT"] = {
["y"] = 6580.2,
["x"] = 490.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [94]
{
["Done"] = {
2139, -- [1]
},
["TT"] = {
["y"] = 6437.3,
["x"] = 398.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [95]
{
["Done"] = {
4727, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 542.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [96]
{
["Done"] = {
1138, -- [1]
},
["TT"] = {
["y"] = 6371.6,
["x"] = 577.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [97]
{
["ExtraLine"] = "sell",
["CRange"] = 967,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6405.9,
["x"] = 527.9,
},
["Range"] = 5.41,
["TT"] = {
["y"] = 6405.9,
["x"] = 527.9,
},
}, -- [98]
{
["ExtraLine"] = "Time to go to Menethil",
["CRange"] = 967,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6492.2,
["x"] = 791,
},
["Range"] = 17.07,
["TT"] = {
["y"] = 6492.2,
["x"] = 791,
},
}, -- [99]
{
["ExtraLine"] = "Go with South Boat",
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3247.4,
["x"] = -444,
},
["Range"] = 248.6,
["TT"] = {
["y"] = 6420.5,
["x"] = 818.8,
},
}, -- [100]
{
["GetFP"] = 967,
["TT"] = {
["y"] = -3792.6,
["x"] = -781.4,
},
["Zone"] = "11 (Wetlands)",
}, -- [1]
{
["ExtraLine"] = "Time to run to Loch Modan",
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3659.9,
["x"] = -838.8,
},
["Range"] = 22.31,
["TT"] = {
["y"] = -3659.9,
["x"] = -838.8,
},
}, -- [2]
{
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3496.6,
["x"] = -935.8,
},
["Range"] = 38.2,
["TT"] = {
["y"] = -3496.6,
["x"] = -935.8,
},
}, -- [3]
{
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3199.4,
["x"] = -1825.1,
},
["Range"] = 44.75,
["TT"] = {
["y"] = -3199.4,
["x"] = -1825.1,
},
}, -- [4]
{
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3244.5,
["x"] = -2436.8,
},
["Range"] = 60.28,
["TT"] = {
["y"] = -3244.5,
["x"] = -2436.8,
},
}, -- [5]
{
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3675.6,
["x"] = -2750.9,
},
["Range"] = 67.54,
["TT"] = {
["y"] = -3675.6,
["x"] = -2750.9,
},
}, -- [6]
{
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4087.3,
["x"] = -2622.7,
},
["Range"] = 21.01,
["TT"] = {
["y"] = -4087.3,
["x"] = -2622.7,
},
}, -- [7]
{
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4353.5,
["x"] = -2461.4,
},
["Range"] = 49.9,
["TT"] = {
["y"] = -4353.5,
["x"] = -2461.4,
},
}, -- [8]
{
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -4474.3,
["x"] = -2687.7,
},
["Range"] = 25.01,
["TT"] = {
["y"] = -4474.3,
["x"] = -2687.7,
},
}, -- [9]
{
["CRange"] = 967,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4679.9,
["x"] = -2699.4,
},
["Range"] = 19.6,
["TT"] = {
["y"] = -4679.9,
["x"] = -2699.4,
},
}, -- [10]
{
["PickUp"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.7,
["x"] = -2676.3,
},
["Zone"] = "38 (Loch Modan)",
}, -- [11]
{
["UpdMapID"] = 1,
},
},
--------- 17-18 Loch Modan NightElf ---
["17-18NightElf-LochModan"] = {
{
["PickUp"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.8,
["x"] = -2676.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [1]
{
["ExtraLine"] = "He Patrols",
["TT"] = {
["y"] = -5352.7,
["x"] = -2955.2,
},
["PickUp"] = {
1339, -- [1]
},
["Zone"] = "38 (Loch Modan)",
}, -- [2]
{
["GetFP"] = 307,
["TT"] = {
["y"] = -5424.9,
["x"] = -2930.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [3]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5348,
["x"] = -3012.3,
},
["Range"] = 3.93,
["TT"] = {
["y"] = -5348,
["x"] = -3012.3,
},
}, -- [4]
{
["PickUp"] = {
436, -- [1]
},
["TT"] = {
["y"] = -5363.4,
["x"] = -3020.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [5]
{
["Done"] = {
436, -- [1]
},
["TT"] = {
["y"] = -5713.5,
["x"] = -3785.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [6]
{
["PickUp"] = {
297, -- [1]
},
["TT"] = {
["y"] = -5713.5,
["x"] = -3785.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [7]
{
["PickUp"] = {
298, -- [1]
},
["TT"] = {
["y"] = -5694.7,
["x"] = -3812,
},
["Zone"] = "38 (Loch Modan)",
}, -- [8]
{
["Qpart"] = {
[297] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5640.6,
["x"] = -3930.3,
},
["Range"] = 122.03,
["TT"] = {
["y"] = -5640.6,
["x"] = -3930.3,
},
}, -- [9]
{
["Done"] = {
297, -- [1]
},
["TT"] = {
["y"] = -5713.2,
["x"] = -3784.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [10]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5795.5,
["x"] = -3823.6,
},
["Range"] = 26.39,
["TT"] = {
["y"] = -5795.5,
["x"] = -3823.6,
},
}, -- [11]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5797.5,
["x"] = -4012.6,
},
["Range"] = 26.32,
["TT"] = {
["y"] = -5797.5,
["x"] = -4012.6,
},
}, -- [12]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5672.4,
["x"] = -4150.6,
},
["Range"] = 28,
["TT"] = {
["y"] = -5672.4,
["x"] = -4150.6,
},
}, -- [13]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5582.2,
["x"] = -4260.5,
},
["Range"] = 22.42,
["TT"] = {
["y"] = -5582.2,
["x"] = -4260.5,
},
}, -- [14]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5619.8,
["x"] = -4308.5,
},
["Range"] = 11.69,
["TT"] = {
["y"] = -5619.8,
["x"] = -4308.5,
},
}, -- [15]
{
["PickUp"] = {
385, -- [1]
},
["TT"] = {
["y"] = -5621.7,
["x"] = -4249.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [16]
{
["PickUp"] = {
257, -- [1]
},
["TT"] = {
["y"] = -5691.8,
["x"] = -4295.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["Qpart"] = {
[257] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5677.2,
["x"] = -4203.1,
},
["Range"] = 55.2,
["TT"] = {
["y"] = -5677.2,
["x"] = -4203.1,
},
}, -- [18]
{
["Done"] = {
257, -- [1]
},
["TT"] = {
["y"] = -5692.1,
["x"] = -4296.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [19]
{
["PickUp"] = {
258, -- [1]
},
["TT"] = {
["y"] = -5692.1,
["x"] = -4296.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [20]
{
["Qpart"] = {
[258] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5214.6,
["x"] = -4066.5,
},
["Range"] = 105.37,
["TT"] = {
["y"] = -5214.6,
["x"] = -4066.5,
},
}, -- [21]
{
["Done"] = {
258, -- [1]
},
["TT"] = {
["y"] = -5692,
["x"] = -4296.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [22]
{
["PickUp"] = {
271, -- [1]
},
["TT"] = {
["y"] = -5667.7,
["x"] = -4248.2,
},
["Zone"] = "38 (Loch Modan)",
}, -- [23]
{
["PickUp"] = {
2038, -- [1]
},
["TT"] = {
["y"] = -5369.1,
["x"] = -3746.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [24]
{
["Qpart"] = {
[385] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5177.3,
["x"] = -3516.5,
},
["Range"] = 52.5,
["TT"] = {
["y"] = -5177.3,
["x"] = -3516.5,
},
}, -- [25]
{
["Qpart"] = {
[2038] = {
["4"] = "4",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4976.8,
["x"] = -3489.4,
},
["Range"] = 0.14,
["TT"] = {
["y"] = -4976.8,
["x"] = -3489.4,
},
}, -- [26]
{
["Qpart"] = {
[2038] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5040.5,
["x"] = -3337.7,
},
["Range"] = 0.08,
["TT"] = {
["y"] = -5040.5,
["x"] = -3337.7,
},
}, -- [27]
{
["Qpart"] = {
[2038] = {
["3"] = "3",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4930.5,
["x"] = -3422.2,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -4930.5,
["x"] = -3422.2,
},
}, -- [28]
{
["Qpart"] = {
[2038] = {
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4865.4,
["x"] = -3328.4,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -4865.4,
["x"] = -3328.4,
},
}, -- [29]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4749.2,
["x"] = -3120.2,
},
["Range"] = 17.13,
["TT"] = {
["y"] = -4749.2,
["x"] = -3120.2,
},
}, -- [30]
{
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4682.2,
["x"] = -3180.4,
},
["Range"] = 15.76,
["TT"] = {
["y"] = -4682.2,
["x"] = -3180.4,
},
}, -- [31]
{
["PickUp"] = {
250, -- [1]
},
["TT"] = {
["y"] = -4738.4,
["x"] = -3263.2,
},
["Zone"] = "38 (Loch Modan)",
}, -- [32]
{
["Done"] = {
250, -- [1]
},
["TT"] = {
["y"] = -4730.5,
["x"] = -3544,
},
["Zone"] = "38 (Loch Modan)",
}, -- [33]
{
["PickUp"] = {
199, -- [1]
},
["TT"] = {
["y"] = -4730.5,
["x"] = -3544,
},
["Zone"] = "38 (Loch Modan)",
}, -- [34]
{
["Done"] = {
199, -- [1]
},
["TT"] = {
["y"] = -4739.6,
["x"] = -3264.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [35]
{
["ExtraLine"] = "Enter Mine",
["CRange"] = 307,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4832.2,
["x"] = -2970.6,
},
["Range"] = 10.46,
["TT"] = {
["y"] = -4832.2,
["x"] = -2970.6,
},
}, -- [36]
{
["Qpart"] = {
[307] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4885.5,
["x"] = -2969.8,
},
["Range"] = 26.22,
["TT"] = {
["y"] = -4885.5,
["x"] = -2969.8,
},
}, -- [37]
{
["Done"] = {
307, -- [1]
},
["TT"] = {
["y"] = -4825.7,
["x"] = -2675.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [38]
{
["Done"] = {
1339, -- [1]
},
["TT"] = {
["y"] = -4825.7,
["x"] = -2675.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [39]
{
["PickUp"] = {
1338, -- [1]
},
["TT"] = {
["y"] = -4825.7,
["x"] = -2675.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [40]
{
["Done"] = {
298, -- [1]
},
["TT"] = {
["y"] = -5359.5,
["x"] = -3020.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [41]
{
["PickUp"] = {
301, -- [1]
},
["TT"] = {
["y"] = -5359.5,
["x"] = -3020.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [42]
{
["GroupTask"] = 271,
["QaskPopup"] = 271,
["Group"] = 2,
["TT"] = {
["y"] = -5668,
["x"] = -4248.3,
},
}, -- [1]
{
["GroupTask"] = 271,
["PickUp"] = {
271,
},
["Zone"] = "38 (Loch Modan)",
["TT"] = {
["y"] = -5668,
["x"] = -4248.3,
},
},
{
["GroupTask"] = 271,
["Qpart"] = {
[271] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5687.3,
["x"] = -3201.1,
},
["RaidIcon"] = 1225,
["Range"] = 119.41,
["TT"] = {
["y"] = -5687.3,
["x"] = -3201.1,
},
},
{
["Done"] = {
2038, -- [1]
},
["TT"] = {
["y"] = -5369,
["x"] = -3746.8,
},
["Zone"] = "38 (Loch Modan)",
}, -- [43]
{
["Done"] = {
385, -- [1]
},
["TT"] = {
["y"] = -5620.6,
["x"] = -4251.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [44]
{
["GroupTask"] = 271,
["Zone"] = "38 (Loch Modan)",
["Done"] = {
271,
},
["TT"] = {
["y"] = -5691.2,
["x"] = -4296.3,
},
},
{
["GroupTask"] = 271,
["PickUp"] = {
531,
},
["Zone"] = "38 (Loch Modan)",
["TT"] = {
["y"] = -5691.2,
["x"] = -4296.3,
},
},
{
["ExtraLine"] = "Die and spirit rez or run",
["CRange"] = 301,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5556.8,
["x"] = -2836.3,
},
["Range"] = 40.78,
["TT"] = {
["y"] = -5556.8,
["x"] = -2836.3,
},
}, -- [45]
{
["CRange"] = 301,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5783.8,
["x"] = -2627.6,
},
["Range"] = 22.4,
["TT"] = {
["y"] = -5783.8,
["x"] = -2627.6,
},
}, -- [46]
{
["CRange"] = 301,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5733.8,
["x"] = -2586.1,
},
["Range"] = 11.86,
["TT"] = {
["y"] = -5733.8,
["x"] = -2586.1,
},
}, -- [47]
{
["CRange"] = 301,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5638.6,
["x"] = -2531.8,
},
["Range"] = 11.95,
["TT"] = {
["y"] = -5638.6,
["x"] = -2531.8,
},
}, -- [48]
{
["CRange"] = 301,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5559.6,
["x"] = -2442.4,
},
["Range"] = 11.99,
["TT"] = {
["y"] = -5559.6,
["x"] = -2442.4,
},
}, -- [49]
{
["CRange"] = 301,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5632,
["x"] = -2248.9,
},
["Range"] = 13.18,
["TT"] = {
["y"] = -5632,
["x"] = -2248.9,
},
}, -- [50]
{
["CRange"] = 301,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5253.4,
["x"] = -535,
},
["Range"] = 28.9,
["TT"] = {
["y"] = -5253.4,
["x"] = -535,
},
}, -- [51]
{
["CRange"] = 301,
["Zone"] = "1 (Dun Morogh)",
["Trigger"] = {
["y"] = -5023.1,
["x"] = -834.9,
},
["Range"] = 17.09,
["TT"] = {
["y"] = -5023.1,
["x"] = -834.9,
},
}, -- [52]
{
["CRange"] = 301,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4946.1,
["x"] = -1016.1,
},
["Range"] = 11.53,
["TT"] = {
["y"] = -4946.1,
["x"] = -1016.1,
},
}, -- [53]
{
["CRange"] = 301,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -4881,
["x"] = -1060.6,
},
["Range"] = 11.81,
["TT"] = {
["y"] = -4881,
["x"] = -1060.6,
},
}, -- [54]
{
["GetFP"] = 301,
["TT"] = {
["y"] = -4820.9,
["x"] = -1151.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [55]
{
["Done"] = {
301, -- [1]
},
["TT"] = {
["y"] = -4631.1,
["x"] = -1303.6,
},
["Zone"] = "1537 (Ironforge)",
}, -- [56]
{
["UpdMapID"] = 1,
},
},
--------- 17-18 Loch Modan Human & Loch Modan Dwarf & Gnome ---
["17-18HumanDwarfGnome-LochModan"] = {
{
["ExtraLine"] = "Hearthstone or die and spirit rez",
["Done"] = {
4763, -- [1]
},
["TT"] = {
["y"] = 6580.2,
["x"] = 490.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [94]
{
["Done"] = {
2139, -- [1]
},
["TT"] = {
["y"] = 6437.3,
["x"] = 398.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [95]
{
["Done"] = {
4727, -- [1]
},
["TT"] = {
["y"] = 6342.1,
["x"] = 542.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [96]
{
["Done"] = {
1138, -- [1]
},
["TT"] = {
["y"] = 6371.6,
["x"] = 577.7,
},
["Zone"] = "148 (Darkshore)",
}, -- [97]
{
["ExtraLine"] = "sell",
["CRange"] = 967,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6405.9,
["x"] = 527.9,
},
["Range"] = 5.41,
["TT"] = {
["y"] = 6405.9,
["x"] = 527.9,
},
}, -- [98]
{
["ExtraLine"] = "Time to go to Menethil",
["CRange"] = 967,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6492.2,
["x"] = 791,
},
["Range"] = 17.07,
["TT"] = {
["y"] = 6492.2,
["x"] = 791,
},
}, -- [99]
{
["ExtraLine"] = "Go with South Boat",
["CRange"] = 967,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3247.4,
["x"] = -444,
},
["Range"] = 248.6,
["TT"] = {
["y"] = 6420.5,
["x"] = 818.8,
},
}, -- [100]
{
["UseFlightPath"] = 436,
["Name"] = "Thelsamar, Loch Modan",
["TT"] = {
["y"] = -3792.6,
["x"] = -781.9,
},
}, -- [1]
{
["CRange"] = 436,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5346.1,
["x"] = -3013,
},
["Range"] = 4.56,
["TT"] = {
["y"] = -5346.1,
["x"] = -3013,
},
}, -- [2]
{
["PickUp"] = {
436, -- [1]
},
["TT"] = {
["y"] = -5361,
["x"] = -3020.9,
},
["Zone"] = "38 (Loch Modan)",
}, -- [3]
{
["Done"] = {
436, -- [1]
},
["TT"] = {
["y"] = -5713.6,
["x"] = -3784.3,
},
["Zone"] = "38 (Loch Modan)",
}, -- [4]
{
["PickUp"] = {
297, -- [1]
},
["TT"] = {
["y"] = -5713.6,
["x"] = -3784.3,
},
["Zone"] = "38 (Loch Modan)",
}, -- [5]
{
["PickUp"] = {
298, -- [1]
},
["TT"] = {
["y"] = -5694.9,
["x"] = -3812.3,
},
["Zone"] = "38 (Loch Modan)",
}, -- [6]
{
["Qpart"] = {
[297] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5639.4,
["x"] = -3940.8,
},
["Range"] = 92.04,
["TT"] = {
["y"] = -5639.4,
["x"] = -3940.8,
},
}, -- [7]
{
["Done"] = {
297, -- [1]
},
["TT"] = {
["y"] = -5713.1,
["x"] = -3784.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [8]
{
["CRange"] = 298,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5592.8,
["x"] = -4271.3,
},
["Range"] = 20.01,
["TT"] = {
["y"] = -5592.8,
["x"] = -4271.3,
},
}, -- [9]
{
["CRange"] = 298,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5635,
["x"] = -4308.8,
},
["Range"] = 12.57,
["TT"] = {
["y"] = -5635,
["x"] = -4308.8,
},
}, -- [10]
{
["PickUp"] = {
385, -- [1]
},
["TT"] = {
["y"] = -5622.8,
["x"] = -4250.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [11]
{
["PickUp"] = {
257, -- [1]
},
["TT"] = {
["y"] = -5691.8,
["x"] = -4296.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [12]
{
["Qpart"] = {
[257] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5757.6,
["x"] = -4128.9,
},
["Range"] = 94.5,
["TT"] = {
["y"] = -5757.6,
["x"] = -4128.9,
},
}, -- [13]
{
["Done"] = {
257, -- [1]
},
["TT"] = {
["y"] = -5690.8,
["x"] = -4295.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [14]
{
["PickUp"] = {
258, -- [1]
},
["TT"] = {
["y"] = -5690.8,
["x"] = -4295.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [15]
{
["Qpart"] = {
[258] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5269.3,
["x"] = -4020.9,
},
["Range"] = 226.92,
["TT"] = {
["y"] = -5269.3,
["x"] = -4020.9,
},
}, -- [16]
{
["Done"] = {
258, -- [1]
},
["TT"] = {
["y"] = -5691.2,
["x"] = -4296.4,
},
["Zone"] = "38 (Loch Modan)",
}, -- [17]
{
["PickUp"] = {
271, -- [1]
},
["TT"] = {
["y"] = -5668,
["x"] = -4248.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [18]
{
["PickUp"] = {
2038, -- [1]
},
["TT"] = {
["y"] = -5369.8,
["x"] = -3747.3,
},
["Zone"] = "38 (Loch Modan)",
}, -- [19]
{
["Qpart"] = {
[385] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5181.1,
["x"] = -3484.3,
},
["Range"] = 93.89,
["TT"] = {
["y"] = -5181.1,
["x"] = -3484.3,
},
}, -- [20]
{
["Qpart"] = {
[2038] = {
["4"] = "4",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4976.4,
["x"] = -3489.7,
},
["Range"] = 0.12,
["TT"] = {
["y"] = -4976.4,
["x"] = -3489.7,
},
}, -- [21]
{
["Qpart"] = {
[2038] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5041.3,
["x"] = -3338.1,
},
["Range"] = 0.14,
["TT"] = {
["y"] = -5041.3,
["x"] = -3338.1,
},
}, -- [22]
{
["Qpart"] = {
[2038] = {
["3"] = "3",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4930.8,
["x"] = -3421.7,
},
["Range"] = 0.16,
["TT"] = {
["y"] = -4930.8,
["x"] = -3421.7,
},
}, -- [23]
{
["Qpart"] = {
[2038] = {
["2"] = "2",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4864.4,
["x"] = -3327.6,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -4864.4,
["x"] = -3327.6,
},
}, -- [24]
{
["CRange"] = 298,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4736.2,
["x"] = -3116.9,
},
["Range"] = 18.43,
["TT"] = {
["y"] = -4736.2,
["x"] = -3116.9,
},
}, -- [25]
{
["CRange"] = 298,
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -4683.1,
["x"] = -3179.8,
},
["Range"] = 8.8,
["TT"] = {
["y"] = -4683.1,
["x"] = -3179.8,
},
}, -- [26]
{
["PickUp"] = {
250, -- [1]
},
["TT"] = {
["y"] = -4738.2,
["x"] = -3264,
},
["Zone"] = "38 (Loch Modan)",
}, -- [27]
{
["Done"] = {
250, -- [1]
},
["TT"] = {
["y"] = -4730.4,
["x"] = -3541.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [28]
{
["PickUp"] = {
199, -- [1]
},
["TT"] = {
["y"] = -4730.4,
["x"] = -3541.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [29]
{
["Done"] = {
199, -- [1]
},
["TT"] = {
["y"] = -4738.6,
["x"] = -3263.7,
},
["Zone"] = "38 (Loch Modan)",
}, -- [30]
{
["Done"] = {
298, -- [1]
},
["TT"] = {
["y"] = -5362.2,
["x"] = -3021.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [31]
{
["PickUp"] = {
301, -- [1]
},
["TT"] = {
["y"] = -5362.2,
["x"] = -3021.1,
},
["Zone"] = "38 (Loch Modan)",
}, -- [32]
{
["GroupTask"] = 271,
["QaskPopup"] = 271,
["Group"] = 2,
["TT"] = {
["y"] = -5668,
["x"] = -4248.3,
},
}, -- [1]
{
["GroupTask"] = 271,
["PickUp"] = {
271,
},
["Zone"] = "38 (Loch Modan)",
["TT"] = {
["y"] = -5668,
["x"] = -4248.3,
},
},
{
["GroupTask"] = 271,
["Qpart"] = {
[271] = {
["1"] = "1",
},
},
["Zone"] = "38 (Loch Modan)",
["Trigger"] = {
["y"] = -5687.3,
["x"] = -3201.1,
},
["RaidIcon"] = 1225,
["Range"] = 119.41,
["TT"] = {
["y"] = -5687.3,
["x"] = -3201.1,
},
},
{
["Done"] = {
2038, -- [1]
},
["TT"] = {
["y"] = -5368.8,
["x"] = -3746.5,
},
["Zone"] = "38 (Loch Modan)",
}, -- [33]
{
["Done"] = {
385, -- [1]
},
["TT"] = {
["y"] = -5622.5,
["x"] = -4250.6,
},
["Zone"] = "38 (Loch Modan)",
}, -- [34]
{
["GroupTask"] = 271,
["Zone"] = "38 (Loch Modan)",
["Done"] = {
271,
},
["TT"] = {
["y"] = -5691.2,
["x"] = -4296.3,
},
},
{
["ExtraLine"] = "Die and spirit rez or run",
["UseFlightPath"] = 301,
["Name"] = "Ironforge, Dun Morogh",
["TT"] = {
["y"] = -5425.1,
["x"] = -2929.8,
},
}, -- [35]
{
["Done"] = {
301, -- [1]
},
["TT"] = {
["y"] = -4632.7,
["x"] = -1303,
},
["Zone"] = "1537 (Ironforge)",
}, -- [36]
{
["UpdMapID"] = 1,
},
},
--------- 18 Ironforge to Redridge Mountains Human ---
["18-Human-IronforgeRedridge"] = {
{
["ExtraLine"] = "Visit Weapon Master & FirstAid & Your Class Trainer",
["CRange"] = 246,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.3,
["x"] = -1197.9,
},
["Range"] = 2.02,
["TT"] = {
["y"] = -5041.3,
["x"] = -1197.9,
},
}, -- [1]
{
["PickUp"] = {
2041, -- [1]
},
["TT"] = {
["y"] = -4836.2,
["x"] = -1260.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [2]
{
["ExtraLine"] = "Go to Stormwind",
["CRange"] = 2041,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8364.6,
["x"] = 535.9,
},
["Range"] = 61.16,
["TT"] = {
["y"] = -4838.7,
["x"] = -1319.4,
},
}, -- [3]
{
["Done"] = {
2041, -- [1]
},
["TT"] = {
["y"] = -8390.5,
["x"] = 635,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [4]
{
["Done"] = {
1338, -- [1]
},
["TT"] = {
["y"] = -8427.4,
["x"] = 599.7,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [5]
{
["ExtraLine"] = "Visit Weapons Master",
["CRange"] = 246,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.1,
["x"] = 613.2,
},
["Range"] = 2.31,
["TT"] = {
["y"] = -8796.1,
["x"] = 613.2,
},
}, -- [6]
{
["UseFlightPath"] = 246,
["Name"] = "Lakeshire, Redridge",
["TT"] = {
["y"] = -8836.2,
["x"] = 490.1,
},
}, -- [7]
{
["PickUp"] = {
125, -- [1]
},
["TT"] = {
["y"] = -9279.2,
["x"] = -2269.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [8]
{
["PickUp"] = {
3741, -- [1]
},
["TT"] = {
["y"] = -9347.6,
["x"] = -2207.7,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [9]
{
["PickUp"] = {
127, -- [1]
},
["TT"] = {
["y"] = -9260.9,
["x"] = -2172.8,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [10]
{
["UpdMapID"] = 1,
},
},
--------- 18 Ironforge to Redridge Mountains NightElf Dwarf Gnome ---
["18-NightElfDwarfGnome-IronforgeRedridge"] = {
{
["ExtraLine"] = "Visit Weapon Master & FirstAid & Your Class Trainer",
["CRange"] = 246,
["Zone"] = "1537 (Ironforge)",
["Trigger"] = {
["y"] = -5041.3,
["x"] = -1197.9,
},
["Range"] = 2.02,
["TT"] = {
["y"] = -5041.3,
["x"] = -1197.9,
},
}, -- [1]
{
["PickUp"] = {
2041, -- [1]
},
["TT"] = {
["y"] = -4836.2,
["x"] = -1260.9,
},
["Zone"] = "1537 (Ironforge)",
}, -- [2]
{
["ExtraLine"] = "Go to Stormwind",
["CRange"] = 2041,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8364.6,
["x"] = 535.9,
},
["Range"] = 61.16,
["TT"] = {
["y"] = -4838.7,
["x"] = -1319.4,
},
}, -- [3]
{
["Done"] = {
2041, -- [1]
},
["TT"] = {
["y"] = -8390.5,
["x"] = 635,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [4]
{
["Done"] = {
1338, -- [1]
},
["TT"] = {
["y"] = -8427.4,
["x"] = 599.7,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [5]
{
["ExtraLine"] = "Visit Weapons Master",
["CRange"] = 246,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8796.1,
["x"] = 613.2,
},
["Range"] = 2.31,
["TT"] = {
["y"] = -8796.1,
["x"] = 613.2,
},
}, -- [6]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -8835.7,
["x"] = 489.7,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [7]
{
["ExtraLine"] = "Exit Stormwind",
["CRange"] = 246,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -9099.7,
["x"] = 406,
},
["Range"] = 44.62,
["TT"] = {
["y"] = -9099.7,
["x"] = 406,
},
}, -- [8]
{
["ExtraLine"] = "go to Redridge Mountains",
["CRange"] = 246,
["Zone"] = "12 (Elwynn Forest)",
["Trigger"] = {
["y"] = -9613.3,
["x"] = -1707.8,
},
["Range"] = 119.01,
["TT"] = {
["y"] = -9613.3,
["x"] = -1707.8,
},
}, -- [9]
{
["PickUp"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9609.7,
["x"] = -1902.5,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [10]
{
["Done"] = {
244, -- [1]
},
["TT"] = {
["y"] = -9444,
["x"] = -2237.9,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [11]
{
["PickUp"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444,
["x"] = -2237.9,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [12]
{
["GetFP"] = 246,
["TT"] = {
["y"] = -9435.4,
["x"] = -2234.9,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [13]
{
["PickUp"] = {
125, -- [1]
},
["TT"] = {
["y"] = -9279.2,
["x"] = -2268.4,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [14]
{
["PickUp"] = {
3741, -- [1]
},
["TT"] = {
["y"] = -9348.4,
["x"] = -2208.7,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [15]
{
["PickUp"] = {
127, -- [1]
},
["TT"] = {
["y"] = -9260.3,
["x"] = -2171.7,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [16]
{
["UpdMapID"] = 1,
},
},
--------- 18-20 Redridge Mountains ---
["18-20RedridgeMountains"] = {
{
["PickUp"] = {
125, -- [1]
},
["TT"] = {
["y"] = -9279.2,
["x"] = -2268.4,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [1]
{
["PickUp"] = {
3741, -- [1]
},
["TT"] = {
["y"] = -9348.4,
["x"] = -2208.7,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [2]
{
["PickUp"] = {
127, -- [1]
},
["TT"] = {
["y"] = -9260.3,
["x"] = -2171.7,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [3]
{
["PickUp"] = {
129, -- [1]
},
["TT"] = {
["y"] = -9217.1,
["x"] = -2151.7,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [4]
{
["PickUp"] = {
92, -- [1]
},
["TT"] = {
["y"] = -9210.2,
["x"] = -2063.4,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [5]
{
["ExtraLine"] = "Loot Glinting Mud - spawns at random locations in the Lake",
["Qpart"] = {
[3741] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9326.7,
["x"] = -1994.1,
},
["Range"] = 0.15,
["TT"] = {
["y"] = -9326.7,
["x"] = -1994.1,
},
}, -- [6]
{
["Done"] = {
129, -- [1]
},
["TT"] = {
["y"] = -9610,
["x"] = -1903.1,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [7]
{
["PickUp"] = {
130, -- [1]
},
["TT"] = {
["y"] = -9610,
["x"] = -1903.1,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [8]
{
["CRange"] = 246,
["Zone"] = "44 (Redridge Mountains)",
["Fillers"] = {
[246] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9495.7,
["x"] = -1898.5,
},
["Range"] = 26.85,
["TT"] = {
["y"] = -9495.7,
["x"] = -1898.5,
},
}, -- [9]
{
["Qpart"] = {
[92] = {
["1"] = "1",
},
[246] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9757.4,
["x"] = -2230.5,
},
["Fillers"] = {
[92] = {
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 80.33,
["TT"] = {
["y"] = -9757.4,
["x"] = -2230.5,
},
}, -- [10]
{
["CRange"] = 127,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9612.1,
["x"] = -2627.9,
},
["Fillers"] = {
[127] = {
["1"] = "1",
},
[92] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Range"] = 39.35,
["TT"] = {
["y"] = -9612.1,
["x"] = -2627.9,
},
}, -- [11]
{
["Fillers"] = {
[127] = {
["1"] = "1",
},
[92] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
246, -- [1]
},
["TT"] = {
["y"] = -9444.1,
["x"] = -2238.2,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [12]
{
["Qpart"] = {
[125] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Fillers"] = {
[127] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9367.5,
["x"] = -2472.9,
},
["Range"] = 0.16,
["TT"] = {
["y"] = -9367.5,
["x"] = -2472.9,
},
}, -- [13]
{
["Qpart"] = {
[127] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9240.6,
["x"] = -2449.8,
},
["Range"] = 60.03,
["TT"] = {
["y"] = -9240.6,
["x"] = -2449.8,
},
}, -- [14]
{
["Qpart"] = {
[92] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9117.3,
["x"] = -2608.5,
},
["Range"] = 79.75,
["TT"] = {
["y"] = -9117.3,
["x"] = -2608.5,
},
}, -- [15]
{
["Done"] = {
125, -- [1]
},
["TT"] = {
["y"] = -9278.8,
["x"] = -2268.2,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [16]
{
["PickUp"] = {
89, -- [1]
},
["TT"] = {
["y"] = -9278.8,
["x"] = -2268.2,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [17]
{
["Done"] = {
3741, -- [1]
},
["TT"] = {
["y"] = -9350.8,
["x"] = -2205.6,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [18]
{
["Done"] = {
127, -- [1]
},
["TT"] = {
["y"] = -9260.9,
["x"] = -2172.5,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [19]
{
["Done"] = {
130, -- [1]
},
["TT"] = {
["y"] = -9245.8,
["x"] = -2045,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [20]
{
["PickUp"] = {
131, -- [1]
},
["TT"] = {
["y"] = -9245.8,
["x"] = -2045,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [21]
{
["Done"] = {
92, -- [1]
},
["TT"] = {
["y"] = -9210.1,
["x"] = -2063.3,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [22]
{
["Done"] = {
131, -- [1]
},
["TT"] = {
["y"] = -9217.4,
["x"] = -2151.6,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [23]
{
["CRange"] = 89,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9236.9,
["x"] = -1951.6,
},
["Range"] = 14.33,
["TT"] = {
["y"] = -9236.9,
["x"] = -1951.6,
},
}, -- [24]
{
["CRange"] = 89,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9198.1,
["x"] = -1959.5,
},
["Range"] = 16.78,
["TT"] = {
["y"] = -9198.1,
["x"] = -1959.5,
},
}, -- [25]
{
["Qpart"] = {
[89] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9081.6,
["x"] = -2078.9,
},
["Range"] = 54.56,
["TT"] = {
["y"] = -9081.6,
["x"] = -2078.9,
},
}, -- [26]
{
["TT"] = {
["y"] = -9081.6,
["x"] = -2078.9,
},
["xp"] = 1,
["Trigger"] = {
["y"] = -9081.6,
["x"] = -2078.9,
},
["level"] = 20,
["Range"] = 442.15,
["Grind"] = 11951,
}, -- [27]
{
["PickUp"] = {
150, -- [1]
},
["TT"] = {
["y"] = -9259.8,
["x"] = -2173,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [28]
{
["Qpart"] = {
[150] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9282.3,
["x"] = -2431,
},
["Range"] = 46.7,
["TT"] = {
["y"] = -9282.3,
["x"] = -2431,
},
}, -- [29]
{
["Done"] = {
150, -- [1]
},
["TT"] = {
["y"] = -9260.3,
["x"] = -2172.7,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [30]
{
["Done"] = {
89, -- [1]
},
["TT"] = {
["y"] = -9279.1,
["x"] = -2268.1,
},
["Zone"] = "44 (Redridge Mountains)",
}, -- [31]
{
["UpdMapID"] = 1,
},
},
--------- 20 Redridge Mountains to Darkshore ---
["20-RedridgeDarkshore"] = {
{
["UseFlightPath"] = 4740,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -9435.1,
["x"] = -2234.8,
},
}, -- [1]
{
["ExtraLine"] = "Train your lvl20 abilitys before you HS",
["Zone"] = "1519 (Stormwind City)",
["Done"] = {
4740, -- [1]
},
["LeaveQuests"] = {
91, -- [1]
20, -- [2]
118, -- [3]
34, -- [4]
128, -- [5]
},
["TT"] = {
["y"] = -8834.8,
["x"] = 478.6,
},
}, -- [2]
{
["PickUp"] = {
4740, -- [1]
},
["TT"] = {
["y"] = 6402,
["x"] = 503.1,
},
["ExtraLine"] = "Click Wanted sign",
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["Done"] = {
948, -- [1]
},
["TT"] = {
["y"] = 5001.7,
["x"] = 87.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["PickUp"] = {
944, -- [1]
},
["TT"] = {
["y"] = 5001.7,
["x"] = 87.9,
},
["Zone"] = "148 (Darkshore)",
}, -- [5]
{
["Qpart"] = {
[944] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4590.5,
["x"] = 408.1,
},
["Range"] = 0.14,
["TT"] = {
["y"] = 4590.5,
["x"] = 408.1,
},
}, -- [6]
{
["ExtraLine"] = "Use Phial",
["Zone"] = "148 (Darkshore)",
["Button"] = 5251,
["Done"] = {
944, -- [1]
},
["TT"] = {
["y"] = 4591.1,
["x"] = 407.3,
},
}, -- [7]
{
["PickUp"] = {
949, -- [1]
},
["TT"] = {
["y"] = 4592.4,
["x"] = 406.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [8]
{
["ExtraLine"] = "Click Tome",
["Done"] = {
949, -- [1]
},
["TT"] = {
["y"] = 4576.5,
["x"] = 417.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [9]
{
["PickUp"] = {
950, -- [1]
},
["TT"] = {
["y"] = 4576.5,
["x"] = 417.6,
},
["Zone"] = "148 (Darkshore)",
}, -- [10]
{
["PickUp"] = {
945, -- [1]
},
["TT"] = {
["y"] = 4519.8,
["x"] = 410.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["Qpart"] = {
[945] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4519.5,
["x"] = 413.8,
},
["Range"] = 105.18,
["TT"] = {
["y"] = 4519.5,
["x"] = 413.8,
},
}, -- [12]
{
["Done"] = {
729, -- [1]
},
["Zone"] = "148 (Darkshore)",
["TT"] = {
["y"] = 4678.7,
["x"] = 601.6,
},
}, -- [1]
{
["UpdMapID"] = 1,
},
},
--------- 20-21 Darkshore ---
["20-21Darkshore"] = {
{
["Done"] = {
729, -- [1]
},
["Zone"] = "148 (Darkshore)",
["TT"] = {
["y"] = 4678.7,
["x"] = 601.6,
},
}, -- [1]
{
["ExtraLine"] = "Clear camp and kill Murkdeep when he spawns",
["Qpart"] = {
[4740] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4994.5,
["x"] = 552.8,
},
["Range"] = 0.14,
["TT"] = {
["y"] = 4994.5,
["x"] = 552.8,
},
}, -- [2]
{
["ExtraLine"] = "Click Sea Creature",
["Zone"] = "148 (Darkshore)",
["PickUp"] = {
4730, -- [1]
},
["TT"] = {
["y"] = 4807.1,
["x"] = 799,
},
}, -- [3]
{
["ExtraLine"] = "Click Turtle leg",
["Zone"] = "148 (Darkshore)",
["PickUp"] = {
4731, -- [1]
},
["TT"] = {
["y"] = 4677.5,
["x"] = 867,
},
}, -- [4]
{
["ExtraLine"] = "Click Turtle head",
["Zone"] = "148 (Darkshore)",
["PickUp"] = {
4732, -- [1]
},
["TT"] = {
["y"] = 4600.4,
["x"] = 896.2,
},
}, -- [5]
{
["PickUp"] = {
4733, -- [1]
},
["Zone"] = "148 (Darkshore)",
["ExtraLine"] = "Click Sea Creature",
["TT"] = {
["y"] = 4516.3,
["x"] = 896.6,
},
}, -- [6]
{
["Qpart"] = {
[986] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4597,
["x"] = 402.6,
},
["Range"] = 263.49,
["TT"] = {
["y"] = 4597,
["x"] = 402.6,
},
},
{
["Done"] = {
950, -- [1]
},
["Zone"] = "148 (Darkshore)",
["TT"] = {
["y"] = 5000.3,
["x"] = 89.6,
},
}, -- [7]
{
["ExtraLine"] = "Wait a sec",
["Zone"] = "148 (Darkshore)",
["PickUp"] = {
951, -- [1]
},
["TT"] = {
["y"] = 5000.3,
["x"] = 89.6,
},
}, -- [8]
{
["PickUp"] = {
5321, -- [1]
},
["Zone"] = "148 (Darkshore)",
["TT"] = {
["y"] = 4995.3,
["x"] = 33.6,
},
}, -- [9]
{
["ExtraLine"] = "Loot horn",
["Qpart"] = {
[5321] = {
["2"] = "2",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 5001.1,
["x"] = 34.4,
},
["RaidIcon"] = 11218,
["Range"] = 0.14,
["TT"] = {
["y"] = 5001.1,
["x"] = 34.4,
},
}, -- [10]
{
["ExtraLine"] = "Keep Kerlonian Awake (use horn to wake him)",
["CRange"] = 5321,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4364.9,
["x"] = -18.8,
},
["Range"] = 13.83,
["TT"] = {
["y"] = 4364.9,
["x"] = -18.8,
},
}, -- [11]
{
["ExtraLine"] = "Keep Kerlonian Awake (use horn to wake him)",
["Zone"] = "148 (Darkshore)",
["PickUp"] = {
5713, -- [1]
},
["TT"] = {
["y"] = 4390.7,
["x"] = -66.5,
},
}, -- [12]
{
["ExtraLine"] = "Keep Kerlonian Awake (use horn to wake him)",
["Qpart"] = {
[5713] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4391,
["x"] = -66.7,
},
["Range"] = 0.13,
["TT"] = {
["y"] = 4391,
["x"] = -66.7,
},
}, -- [13]
{
["ExtraLine"] = "Keep Kerlonian Awake (use horn to wake him)",
["CRange"] = 5321,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 4124.2,
["x"] = 29,
},
["Range"] = 55.72,
["TT"] = {
["y"] = 4124.2,
["x"] = 29,
},
}, -- [14]
{
["ExtraLine"] = "Keep Kerlonian Awake (use horn to wake him)",
["CRange"] = 5321,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3563.3,
["x"] = 212.6,
},
["Range"] = 21.01,
["TT"] = {
["y"] = 3563.3,
["x"] = 212.6,
},
}, -- [15]
{
["CRange"] = 5321,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3263.8,
["x"] = 174.7,
},
["Range"] = 13.39,
["TT"] = {
["y"] = 3263.8,
["x"] = 174.7,
},
}, -- [16]
{
["CRange"] = 5321,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3260.9,
["x"] = 152.9,
},
["Range"] = 10.15,
["TT"] = {
["y"] = 3260.9,
["x"] = 152.9,
},
}, -- [17]
{
["Qpart"] = {
[5321] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3304.4,
["x"] = 127.9,
},
["Range"] = 0.14,
["TT"] = {
["y"] = 3304.4,
["x"] = 127.9,
},
}, -- [18]
{
["Done"] = {
5321, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3304.4,
["x"] = 127.9,
},
}, -- [19]
{
["Done"] = {
5713, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3260.6,
["x"] = 165.8,
},
}, -- [20]
{
["Done"] = {
967, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3185.5,
["x"] = 189.6,
},
}, -- [21]
{
["PickUp"] = {
970, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3185.5,
["x"] = 189.6,
},
}, -- [22]
{
["PickUp"] = {
1010, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3189.2,
["x"] = 176.1,
},
}, -- [23]
{
["UpdMapID"] = 1,
},
},
--------- 21-22 Ashenvale and Stonetalon ---
["21-22AshenvaleStonetalon"] = {
{
["PickUp"] = {
970, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3185.5,
["x"] = 189.6,
},
}, -- [22]
{
["PickUp"] = {
1010, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3189.2,
["x"] = 176.1,
},
}, -- [23]
{
["Qpart"] = {
[970] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3471.4,
["x"] = -78.1,
},
["Range"] = 63.68,
["TT"] = {
["y"] = 3471.4,
["x"] = -78.1,
},
}, -- [1]
{
["ExtraLine"] = "Loot the Bags",
["Qpart"] = {
[1010] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3765,
["x"] = -89,
},
["Range"] = 68.69,
["TT"] = {
["y"] = 3765,
["x"] = -89,
},
}, -- [2]
{
["Done"] = {
1010, -- [1]
},
["TT"] = {
["y"] = 3190.5,
["x"] = 175.6,
},
["Zone"] = "331 (Ashenvale)",
}, -- [3]
{
["ExtraLine"] = "Takes a sec",
["TT"] = {
["y"] = 3190.3,
["x"] = 176.8,
},
["PickUp"] = {
1020, -- [1]
},
["Zone"] = "331 (Ashenvale)",
}, -- [4]
{
["Done"] = {
970, -- [1]
},
["TT"] = {
["y"] = 3185.4,
["x"] = 189,
},
["Zone"] = "331 (Ashenvale)",
}, -- [5]
{
["ExtraLine"] = "Accept after RP",
["TT"] = {
["y"] = 3187.6,
["x"] = 189.7,
},
["PickUp"] = {
973, -- [1]
},
["Zone"] = "331 (Ashenvale)",
}, -- [6]
{
["CRange"] = 945,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3164.9,
["x"] = 229.1,
},
["Range"] = 23.59,
["TT"] = {
["y"] = 3164.9,
["x"] = 229.1,
},
}, -- [7]
{
["CRange"] = 945,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3066,
["x"] = 202.5,
},
["Range"] = 22.59,
["TT"] = {
["y"] = 3066,
["x"] = 202.5,
},
}, -- [8]
{
["CRange"] = 945,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2998,
["x"] = 150.3,
},
["Range"] = 21.05,
["TT"] = {
["y"] = 2998,
["x"] = 150.3,
},
}, -- [9]
{
["Done"] = {
945, -- [1]
},
["TT"] = {
["y"] = 2678.2,
["x"] = 394,
},
["Zone"] = "331 (Ashenvale)",
}, -- [10]
{
["CRange"] = 1008,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2728.7,
["x"] = 270.5,
},
["Range"] = 26.05,
["TT"] = {
["y"] = 2728.7,
["x"] = 270.5,
},
}, -- [11]
{
["CRange"] = 1008,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2804.1,
["x"] = 84.3,
},
["Range"] = 32.14,
["TT"] = {
["y"] = 2804.1,
["x"] = 84.3,
},
}, -- [12]
{
["GetFP"] = 1008,
["TT"] = {
["y"] = 2828.2,
["x"] = -284.9,
},
["Zone"] = "331 (Ashenvale)",
}, -- [13]
{
["PickUp"] = {
1008, -- [1]
},
["TT"] = {
["y"] = 2795.5,
["x"] = -299.1,
},
["Zone"] = "331 (Ashenvale)",
}, -- [14]
{
["PickUp"] = {
1070, -- [1]
},
["TT"] = {
["y"] = 2760,
["x"] = -313.1,
},
["Zone"] = "331 (Ashenvale)",
}, -- [15]
{
["PickUp"] = {
1056, -- [1]
},
["TT"] = {
["y"] = 2785.3,
["x"] = -362.1,
},
["Zone"] = "331 (Ashenvale)",
}, -- [16]
{
["PickUp"] = {
991, -- [1]
1054, -- [2]
},
["TT"] = {
["y"] = 2767.4,
["x"] = -411.5,
},
["Zone"] = "331 (Ashenvale)",
}, -- [17]
{
["SetHS"] = 991,
["TT"] = {
["y"] = 2780.9,
["x"] = -432.9,
},
["Zone"] = "331 (Ashenvale)",
}, -- [18]
{
["Done"] = {
1020, -- [1]
},
["TT"] = {
["y"] = 2682.2,
["x"] = -454.2,
},
["Zone"] = "331 (Ashenvale)",
}, -- [19]
{
["PickUp"] = {
1033, -- [1]
},
["TT"] = {
["y"] = 2682.2,
["x"] = -454.2,
},
["Zone"] = "331 (Ashenvale)",
}, -- [20]
{
["PickUp"] = {
1007, -- [1]
},
["TT"] = {
["y"] = 3469.9,
["x"] = 846.2,
},
["Zone"] = "331 (Ashenvale)",
}, -- [21]
{
["Qpart"] = {
[1007] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Fillers"] = {
[1008] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = 3879.7,
["x"] = 880.9,
},
["Range"] = 0.14,
["TT"] = {
["y"] = 3879.7,
["x"] = 880.9,
},
}, -- [22]
{
["Fillers"] = {
[1008] = {
["1"] = "1",
},
},
["Done"] = {
1007, -- [1]
},
["TT"] = {
["y"] = 3470.4,
["x"] = 846.5,
},
["Zone"] = "331 (Ashenvale)",
}, -- [23]
{
["PickUp"] = {
1009, -- [1]
},
["TT"] = {
["y"] = 3470.6,
["x"] = 845.6,
},
["ExtraLine"] = "Wait a sec",
["Zone"] = "331 (Ashenvale)",
}, -- [24]
{
["ExtraLine"] = "He patrols the isle",
["Qpart"] = {
[1009] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 4143.9,
["x"] = 1279.7,
},
["Fillers"] = {
[1008] = {
["1"] = "1",
},
},
["Range"] = 44.75,
["TT"] = {
["y"] = 4143.9,
["x"] = 1279.7,
},
}, -- [25]
{
["Qpart"] = {
[1008] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3757.4,
["x"] = 877.3,
},
["Range"] = 148.33,
["TT"] = {
["y"] = 3757.4,
["x"] = 877.3,
},
}, -- [26]
{
["Done"] = {
1009, -- [1]
},
["TT"] = {
["y"] = 3470.1,
["x"] = 846.1,
},
["Zone"] = "331 (Ashenvale)",
}, -- [27]
{
["Done"] = {
991, -- [1]
},
["TT"] = {
["y"] = 3045.8,
["x"] = 529.6,
},
["Zone"] = "331 (Ashenvale)",
}, -- [28]
{
["PickUp"] = {
1023, -- [1]
},
["TT"] = {
["y"] = 3045.8,
["x"] = 529.6,
},
["Zone"] = "331 (Ashenvale)",
}, -- [29]
{
["Qpart"] = {
[1023] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3045.8,
["x"] = 529.6,
},
["Range"] = 110.65,
["TT"] = {
["y"] = 3045.8,
["x"] = 529.6,
},
}, -- [30]
{
["TT"] = {
["y"] = 3095.9,
["x"] = 444.8,
},
["UseHS"] = 1023,
["Zone"] = "331 (Ashenvale)",
}, -- [31]
{
["Done"] = {
1023, -- [1]
},
["TT"] = {
["y"] = 2767,
["x"] = -411.5,
},
["Zone"] = "331 (Ashenvale)",
}, -- [32]
{
["PickUp"] = {
1025, -- [1]
1024, -- [2]
},
["TT"] = {
["y"] = 2767,
["x"] = -411.5,
},
["Zone"] = "331 (Ashenvale)",
}, -- [33]
{
["Done"] = {
1008, -- [1]
},
["TT"] = {
["y"] = 2795.1,
["x"] = -299.5,
},
["Zone"] = "331 (Ashenvale)",
}, -- [34]
{
["PickUp"] = {
1134, -- [1]
},
["TT"] = {
["y"] = 2795.1,
["x"] = -299.5,
},
["Zone"] = "331 (Ashenvale)",
}, -- [35]
{
["CRange"] = 1033,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2744.2,
["x"] = -696.2,
},
["Range"] = 23,
["TT"] = {
["y"] = 2744.2,
["x"] = -696.2,
},
}, -- [36]
{
["CRange"] = 1033,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2827.8,
["x"] = -755.1,
},
["Range"] = 16.13,
["TT"] = {
["y"] = 2827.8,
["x"] = -755.1,
},
}, -- [37]
{
["CRange"] = 1033,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2909,
["x"] = -796.3,
},
["Range"] = 17.15,
["TT"] = {
["y"] = 2909,
["x"] = -796.3,
},
}, -- [38]
{
["Qpart"] = {
[1033] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2907.8,
["x"] = -968,
},
["Range"] = 0.1,
["TT"] = {
["y"] = 2907.8,
["x"] = -968,
},
}, -- [39]
{
["CRange"] = 1024,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2762.4,
["x"] = -1006.4,
},
["Range"] = 6.42,
["TT"] = {
["y"] = 2762.4,
["x"] = -1006.4,
},
}, -- [40]
{
["CRange"] = 1024,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2767.9,
["x"] = -1065.2,
},
["Range"] = 6.14,
["TT"] = {
["y"] = 2767.9,
["x"] = -1065.2,
},
}, -- [41]
{
["CRange"] = 1024,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2804.6,
["x"] = -1190.7,
},
["Range"] = 34.08,
["TT"] = {
["y"] = 2804.6,
["x"] = -1190.7,
},
}, -- [42]
{
["CRange"] = 1024,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2916.9,
["x"] = -1273.6,
},
["Range"] = 12.96,
["TT"] = {
["y"] = 2916.9,
["x"] = -1273.6,
},
}, -- [43]
{
["Done"] = {
1024, -- [1]
},
["TT"] = {
["y"] = 2896.6,
["x"] = -1387,
},
["Zone"] = "331 (Ashenvale)",
}, -- [44]
{
["PickUp"] = {
1026, -- [1]
},
["TT"] = {
["y"] = 2896.6,
["x"] = -1387,
},
["Zone"] = "331 (Ashenvale)",
}, -- [45]
{
["CRange"] = 1025,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2541.7,
["x"] = -1234.7,
},
["Range"] = 76.72,
["TT"] = {
["y"] = 2541.7,
["x"] = -1234.7,
},
}, -- [46]
{
["Qpart"] = {
[1025] = {
["1"] = "1",
["4"] = "4",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2236.3,
["x"] = -1320,
},
["Range"] = 127.46,
["TT"] = {
["y"] = 2236.3,
["x"] = -1320,
},
}, -- [47]
{
["ExtraLine"] = "Hearthstone or run",
["Done"] = {
1025, -- [1]
},
["TT"] = {
["y"] = 2766.8,
["x"] = -411.8,
},
["Zone"] = "331 (Ashenvale)",
}, -- [48]
{
["Done"] = {
1033, -- [1]
},
["TT"] = {
["y"] = 2682,
["x"] = -454.7,
},
["Zone"] = "331 (Ashenvale)",
}, -- [49]
{
["ExtraLine"] = "Wait for RP",
["TT"] = {
["y"] = 2682,
["x"] = -454.7,
},
["PickUp"] = {
1034, -- [1]
},
["Zone"] = "331 (Ashenvale)",
}, -- [50]
{
["ExtraLine"] = "Loot the bushes",
["Qpart"] = {
[1034] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2074.8,
["x"] = -239,
},
["Range"] = 35.96,
["TT"] = {
["y"] = 2074.8,
["x"] = -239,
},
}, -- [51]
{
["ExtraLine"] = "Go to Stonetalon",
["CRange"] = 1093,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 1977.6,
["x"] = -758.7,
},
["Range"] = 31.26,
["TT"] = {
["y"] = 1977.6,
["x"] = -758.7,
},
}, -- [52]
{
["ExtraLine"] = "Go to Stonetalon",
["CRange"] = 1093,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 1919,
["x"] = -775.2,
},
["Range"] = 7.54,
["TT"] = {
["y"] = 1919,
["x"] = -775.2,
},
}, -- [53]
{
["ExtraLine"] = "Go to Stonetalon",
["CRange"] = 1093,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 1938.4,
["x"] = -741.2,
},
["Range"] = 10.48,
["TT"] = {
["y"] = 1938.4,
["x"] = -741.2,
},
}, -- [54]
{
["ExtraLine"] = "Go to Stonetalon",
["CRange"] = 1093,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 1891.4,
["x"] = -716.7,
},
["Range"] = 19.88,
["TT"] = {
["y"] = 1891.4,
["x"] = -716.7,
},
}, -- [55]
{
["CRange"] = 1093,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 1529.4,
["x"] = -574.9,
},
["Range"] = 17.81,
["TT"] = {
["y"] = 1529.4,
["x"] = -574.9,
},
}, -- [56]
{
["PickUp"] = {
1093, -- [1]
},
["TT"] = {
["y"] = 879.9,
["x"] = 364.8,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [57]
{
["CRange"] = 1093,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 837.9,
["x"] = 300,
},
["Range"] = 31.36,
["TT"] = {
["y"] = 837.9,
["x"] = 300,
},
}, -- [58]
{
["CRange"] = 1093,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 698,
["x"] = 261,
},
["Range"] = 18.42,
["TT"] = {
["y"] = 698,
["x"] = 261,
},
}, -- [59]
{
["CRange"] = 1093,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 628.5,
["x"] = 307.9,
},
["Range"] = 22.49,
["TT"] = {
["y"] = 628.5,
["x"] = 307.9,
},
}, -- [60]
{
["CRange"] = 1093,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 692.5,
["x"] = 359.8,
},
["Range"] = 22.81,
["TT"] = {
["y"] = 692.5,
["x"] = 359.8,
},
}, -- [61]
{
["Done"] = {
1070, -- [1]
},
["TT"] = {
["y"] = 739.7,
["x"] = 320.9,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [62]
{
["PickUp"] = {
1085, -- [1]
},
["TT"] = {
["y"] = 739.7,
["x"] = 320.9,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [63]
{
["Done"] = {
1085, -- [1]
},
["TT"] = {
["y"] = 730.5,
["x"] = 338.9,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [64]
{
["PickUp"] = {
1071, -- [1]
},
["TT"] = {
["y"] = 730.5,
["x"] = 338.9,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [65]
{
["Qpart"] = {
[1071] = {
["1"] = "1",
["2"] = "2",
},
[1093] = {
["1"] = "1",
},
},
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 1169.4,
["x"] = -92,
},
["Range"] = 256.47,
["TT"] = {
["y"] = 1169.4,
["x"] = -92,
},
}, -- [66]
{
["Done"] = {
1093, -- [1]
},
["TT"] = {
["y"] = 878.4,
["x"] = 365.3,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [67]
{
["TT"] = {
["y"] = 729.9,
["x"] = 339.7,
},
["LeaveQuests"] = {
1094, -- [1]
},
["Done"] = {
1071, -- [1]
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [68]
{
["PickUp"] = {
1075, -- [1]
1072, -- [2]
},
["TT"] = {
["y"] = 729.9,
["x"] = 339.7,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [69]
{
["Qpart"] = {
[1134] = {
["1"] = "1",
},
},
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 1515,
["x"] = 824.5,
},
["Range"] = 191.46,
["TT"] = {
["y"] = 1515,
["x"] = 824.5,
},
}, -- [70]
{
["CRange"] = 1056,
["Zone"] = "406 (Stonetalon Mountains)",
["Trigger"] = {
["y"] = 1873.1,
["x"] = 954,
},
["Range"] = 34.4,
["TT"] = {
["y"] = 1873.1,
["x"] = 954,
},
}, -- [71]
{
["Done"] = {
1056, -- [1]
},
["TT"] = {
["y"] = 2653.1,
["x"] = 1434,
},
["Zone"] = "406 (Stonetalon Mountains)",
}, -- [72]
{
["UpdMapID"] = 1,
},
},
--------- 22-24 Darkshore ---
["22-24Darkshore"] = {
{
["Name"] = "Auberdine, Darkshore",
["UseFlightPath"] = 4740,
["TT"] = {
["y"] = 2682.2,
["x"] = 1465.9,
},
}, -- [1]
{
["TT"] = {
["y"] = 6342.5,
["x"] = 543.6,
},
["LeaveQuests"] = {
1057, -- [1]
1094, -- [2]
},
["Done"] = {
4733, -- [1]
4730, -- [2]
4732, -- [3]
4731, -- [4]
},
["Zone"] = "148 (Darkshore)",
}, -- [2]
{
["SetHS"] = 951,
["TT"] = {
["y"] = 6406.9,
["x"] = 518.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [3]
{
["Done"] = {
4740, -- [1]
},
["TT"] = {
["y"] = 6439,
["x"] = 472.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [4]
{
["ExtraLine"] = "Loot Relics off the ground",
["Qpart"] = {
[951] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7157.8,
["x"] = -807.1,
},
["Range"] = 127.88,
["TT"] = {
["y"] = 7157.8,
["x"] = -807.1,
},
}, -- [5]
{
["PickUp"] = {
2098, -- [1]
},
["TT"] = {
["y"] = 7744.5,
["x"] = -769.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [6]
{
["ExtraLine"] = "Kill Raging Reef Crawlers",
["Qpart"] = {
[2098] = {
["3"] = "3",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7797.7,
["x"] = -779.8,
},
["Range"] = 216.01,
["TT"] = {
["y"] = 7797.7,
["x"] = -779.8,
},
}, -- [7]
{
["ExtraLine"] = "Kill Merlocs",
["Qpart"] = {
[2098] = {
["2"] = "2",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7807.6,
["x"] = -641.6,
},
["Range"] = 71.75,
["TT"] = {
["y"] = 7807.6,
["x"] = -641.6,
},
}, -- [8]
{
["ExtraLine"] = "Kill Giant Forestriders",
["Qpart"] = {
[2098] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7774.1,
["x"] = -967.4,
},
["Range"] = 119.35,
["TT"] = {
["y"] = 7774.1,
["x"] = -967.4,
},
}, -- [9]
{
["Done"] = {
2098, -- [1]
},
["TT"] = {
["y"] = 7744.1,
["x"] = -769.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [10]
{
["PickUp"] = {
2078, -- [1]
},
["TT"] = {
["y"] = 7744.1,
["x"] = -769.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [11]
{
["ExtraLine"] = "Talk to Threshwackonator (Elite quest)",
["Qpart"] = {
[2078] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 7535.4,
["x"] = -713.2,
},
["ExtraLine2"] = "Then lead him north to the gnome npc, then kill him",
["Range"] = 0.12,
["TT"] = {
["y"] = 7535.4,
["x"] = -713.2,
},
}, -- [12]
{
["Done"] = {
2078, -- [1]
},
["TT"] = {
["y"] = 7744.8,
["x"] = -769.4,
},
["Zone"] = "148 (Darkshore)",
}, -- [13]
{
["TT"] = {
["y"] = 7743.3,
["x"] = -769.6,
},
["UseHS"] = 951,
["Zone"] = "148 (Darkshore)",
}, -- [14]
{
["Done"] = {
986, -- [1]
},
["TT"] = {
["y"] = 6434.8,
["x"] = 363.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [15]
{
["PickUp"] = {
993, -- [1]
},
["TT"] = {
["y"] = 6434.8,
["x"] = 363.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [16]
{
["Done"] = {
951, -- [1]
},
["TT"] = {
["y"] = 4999.8,
["x"] = 89.3,
},
["Zone"] = "148 (Darkshore)",
}, -- [17]
{
["CRange"] = 993,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4619.3,
["x"] = 26.5,
},
["Range"] = 13.05,
["TT"] = {
["y"] = 4619.3,
["x"] = 26.5,
},
}, -- [18]
{
["Done"] = {
993, -- [1]
},
["TT"] = {
["y"] = 4608.5,
["x"] = -6.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [19]
{
["UpdMapID"] = 1,
},
},
--------- 24 Ashenvale ---
["24-Ashenvale"] = {
{
["PickUp"] = {
994, -- [1]
},
["PickUp2"] = 995, -- [1]
["TT"] = {
["y"] = 4608.5,
["x"] = -6.1,
},
["Zone"] = "148 (Darkshore)",
}, -- [20]
{
["Qpart2"] = 995,
["ExtraLine"] = "Escort Volcor",
["Qpart"] = {
[994] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4612.5,
["x"] = 8.8,
},
["Range"] = 240.65,
["TT"] = {
["y"] = 4612.5,
["x"] = 8.8,
},
}, -- [21]
{
["Qpart2"] = 994,
["ExtraLine"] = "Escort Volcor",
["Qpart"] = {
[995] = {
["1"] = "1",
},
},
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 4612.5,
["x"] = 8.8,
},
["Range"] = 240.65,
["TT"] = {
["y"] = 4612.5,
["x"] = 8.8,
},
}, -- [21]
{
["ExtraLine"] = "Hearth or run",
["Done"] = {
994, -- [1]
},
["Done2"] = 995, -- [1]
["TT"] = {
["y"] = 6435.7,
["x"] = 363.2,
},
["Zone"] = "148 (Darkshore)",
}, -- [22]
{
["PickUp"] = {
990, -- [1]
},
["TT"] = {
["y"] = 6436.4,
["x"] = 363.8,
},
["Zone"] = "148 (Darkshore)",
}, -- [23]
{
["UseFlightPath"] = 990,
["Name"] = "Astranaar, Ashenvale",
["TT"] = {
["y"] = 6343.2,
["x"] = 561.8,
},
}, -- [1]
{
["Done"] = {
1134, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 2795.6,
["x"] = -298.8,
},
}, -- [2]
{
["Done"] = {
990, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 2766.9,
["x"] = -411.5,
},
}, -- [3]
{
["Done"] = {
1034, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 2682.1,
["x"] = -454.4,
},
}, -- [4]
{
["PickUp"] = {
1035, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["ExtraLine"] = "wait for RP",
["TT"] = {
["y"] = 2682.1,
["x"] = -454.4,
},
}, -- [5]
{
["CRange"] = 973,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2473,
["x"] = -337,
},
["Range"] = 11.36,
["TT"] = {
["y"] = 2473,
["x"] = -337,
},
}, -- [6]
{
["CRange"] = 973,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2359.7,
["x"] = 38.1,
},
["Range"] = 16.45,
["TT"] = {
["y"] = 2359.7,
["x"] = 38.1,
},
}, -- [7]
{
["CRange"] = 973,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2223.9,
["x"] = 195.8,
},
["Range"] = 16.51,
["TT"] = {
["y"] = 2223.9,
["x"] = 195.8,
},
}, -- [8]
{
["Qpart"] = {
[973] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2339.3,
["x"] = 241.4,
},
["Range"] = 0.16,
["TT"] = {
["y"] = 2339.3,
["x"] = 241.4,
},
}, -- [9]
{
["CRange"] = 973,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2218.1,
["x"] = 161.5,
},
["Range"] = 21.59,
["TT"] = {
["y"] = 2218.1,
["x"] = 161.5,
},
}, -- [10]
{
["CRange"] = 973,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2311.9,
["x"] = 66.5,
},
["Range"] = 32.84,
["TT"] = {
["y"] = 2311.9,
["x"] = 66.5,
},
}, -- [11]
{
["CRange"] = 1054,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3301.2,
["x"] = -261.4,
},
["Range"] = 16.31,
["TT"] = {
["y"] = 3301.2,
["x"] = -261.4,
},
}, -- [12]
{
["CRange"] = 1054,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3386.7,
["x"] = -382.5,
},
["Range"] = 22.79,
["TT"] = {
["y"] = 3386.7,
["x"] = -382.5,
},
}, -- [13]
{
["ExtraLine"] = "Kill Dal Bloodclaw, he patrols",
["Qpart"] = {
[1054] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 3347,
["x"] = -435.8,
},
["Range"] = 27.07,
["TT"] = {
["y"] = 3347,
["x"] = -435.8,
},
}, -- [14]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = 3358.6,
["x"] = -433.1,
},
["level"] = 24,
["xp"] = 11000,
["TT"] = {
["y"] = 3358.6,
["x"] = -433.1,
},
}, -- [15]
{
["CRange"] = 973,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2846.4,
["x"] = 152.7,
},
["Range"] = 47.01,
["TT"] = {
["y"] = 2846.4,
["x"] = 152.7,
},
}, -- [16]
{
["Done"] = {
973, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3185.6,
["x"] = 190,
},
}, -- [17]
{
["PickUp"] = {
1140, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 3185.6,
["x"] = 190,
},
}, -- [18]
{
["CRange"] = 1054,
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2865,
["x"] = 174,
},
["Range"] = 46.88,
["TT"] = {
["y"] = 2865,
["x"] = 174,
},
}, -- [19]
{
["Done"] = {
1054, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 2766.8,
["x"] = -411.9,
},
}, -- [20]
{
["PickUp"] = {
1016, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 2090.1,
["x"] = -1171.7,
},
}, -- [21]
{
["ExtraLine"] = "Kill Water Elementals",
["ExtraQpart"] = "Elemental Bracers",
["ItemID"] = 12220,
["Ammount"] = 5,
["Trigger"] = {
["y"] = 1991.9,
["x"] = -1117.1,
},
["Qid"] = 1016,
["Range"] = 118.06,
["TT"] = {
["y"] = 1991.9,
["x"] = -1117.1,
},
}, -- [22]
{
["ExtraLine"] = "Use Divining Scroll",
["Qpart"] = {
[1016] = {
["1"] = "1",
},
},
["Zone"] = "331 (Ashenvale)",
["Trigger"] = {
["y"] = 2008,
["x"] = -1128.2,
},
["Button"] = 5456,
["Range"] = 0.14,
["TT"] = {
["y"] = 2008,
["x"] = -1128.2,
},
}, -- [23]
{
["Done"] = {
1016, -- [1]
},
["Zone"] = "331 (Ashenvale)",
["TT"] = {
["y"] = 2089.3,
["x"] = -1171.7,
},
}, -- [24]
{
["Zone"] = "331 (Ashenvale)",
["UseHS"] = 1016,
["TT"] = {
["y"] = 2008,
["x"] = -1128.2,
},
}, -- [25]
{
["ExtraLine"] = "Time for Wetlands",
["CRange"] = 1140,
["Zone"] = "148 (Darkshore)",
["Trigger"] = {
["y"] = 6500.8,
["x"] = 783.4,
},
["Range"] = 27.58,
["TT"] = {
["y"] = 6500.8,
["x"] = 783.4,
},
}, -- [26]
{
["ExtraLine"] = "Time for Wetlands",
["CRange"] = 1140,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3376.9,
["x"] = -550.4,
},
["Range"] = 233.75,
["TT"] = {
["y"] = 6421.6,
["x"] = 817.1,
},
}, -- [27]
{
["LeaveQuests"] = {
4581,
1017,
},
["PickUp"] = {
279, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3760.6,
["x"] = -733.1,
},
}, -- [28]
{
["UpdMapID"] = 1,
},
},
--------- 24-27 Wetlands ---
["24-27Wetlands"] = {
{
["PickUp"] = {
279, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3760.9,
["x"] = -732.8,
},
}, -- [1]
{
["PickUp"] = {
463, -- [1]
288, -- [2]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3792,
["x"] = -839,
},
}, -- [2]
{
["SetHS"] = 463,
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3827.8,
["x"] = -832.1,
},
}, -- [3]
{
["ExtraLine"] = "Buy Flagon of Mead from Innkeeper",
["Qpart"] = {
[288] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3826.7,
["x"] = -831.7,
},
["Range"] = 0.13,
["TT"] = {
["y"] = -3826.7,
["x"] = -831.7,
},
}, -- [4]
{
["Done"] = {
288, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3792.3,
["x"] = -840.1,
},
}, -- [5]
{
["PickUp"] = {
289, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3792.3,
["x"] = -840.1,
},
}, -- [6]
{
["PickUp"] = {
470, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3747.8,
["x"] = -877,
},
}, -- [7]
{
["CRange"] = 470,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3681,
["x"] = -828.1,
},
["Range"] = 8.64,
["TT"] = {
["y"] = -3681,
["x"] = -828.1,
},
}, -- [8]
{
["PickUp"] = {
473, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3715.3,
["x"] = -807.2,
},
}, -- [9]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
473, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3732.7,
["x"] = -797.7,
},
}, -- [10]
{
["PickUp"] = {
464, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3732.7,
["x"] = -797.7,
},
}, -- [11]
{
["CRange"] = 464,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3679.5,
["x"] = -827.1,
},
["Range"] = 15.15,
["TT"] = {
["y"] = -3679.5,
["x"] = -827.1,
},
}, -- [12]
{
["PickUp"] = {
305, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3584.7,
["x"] = -865.1,
},
}, -- [13]
{
["Qpart"] = {
[279] = {
["2"] = "2",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3244.9,
["x"] = -1134.8,
},
["Fillers"] = {
[279] = {
["1"] = "1",
},
},
["Range"] = 0.08,
["TT"] = {
["y"] = -3244.9,
["x"] = -1134.8,
},
}, -- [14]
{
["Qpart"] = {
[279] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3244.9,
["x"] = -1134.8,
},
["Range"] = 74.14,
["TT"] = {
["y"] = -3244.9,
["x"] = -1134.8,
},
}, -- [15]
{
["CRange"] = 305,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3267.8,
["x"] = -1798.2,
},
["Range"] = 13.33,
["TT"] = {
["y"] = -3267.8,
["x"] = -1798.2,
},
}, -- [16]
{
["CRange"] = 305,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3323,
["x"] = -1927.2,
},
["Range"] = 11.92,
["TT"] = {
["y"] = -3323,
["x"] = -1927.2,
},
}, -- [17]
{
["CRange"] = 305,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3465.3,
["x"] = -1921.1,
},
["Range"] = 7.01,
["TT"] = {
["y"] = -3465.3,
["x"] = -1921.1,
},
}, -- [18]
{
["PickUp"] = {
294, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3549.2,
["x"] = -1970.5,
},
}, -- [19]
{
["Done"] = {
305, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3589.9,
["x"] = -1998,
},
}, -- [20]
{
["PickUp"] = {
306, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3589.9,
["x"] = -1998,
},
}, -- [21]
{
["ExtraLine"] = "Leave Excavationsite",
["CRange"] = 306,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3292.5,
["x"] = -1816.7,
},
["Range"] = 21.16,
["TT"] = {
["y"] = -3292.5,
["x"] = -1816.7,
},
}, -- [22]
{
["CRange"] = 306,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3269.8,
["x"] = -1736.4,
},
["Range"] = 16.38,
["TT"] = {
["y"] = -3269.8,
["x"] = -1736.4,
},
}, -- [23]
{
["Qpart"] = {
[294] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3488,
["x"] = -1366.8,
},
["Range"] = 151.86,
["TT"] = {
["y"] = -3488,
["x"] = -1366.8,
},
}, -- [24]
{
["TT"] = {
["y"] = -3488,
["x"] = -1366.8,
},
["xp"] = 30000,
["Trigger"] = {
["y"] = -3488,
["x"] = -1366.8,
},
["level"] = 24,
["Range"] = 151.86,
["Grind"] = 11951,
}, -- [25]
{
["CRange"] = 306,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3280.4,
["x"] = -1802.1,
},
["Range"] = 22.94,
["TT"] = {
["y"] = -3280.4,
["x"] = -1802.1,
},
}, -- [26]
{
["CRange"] = 306,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3331.6,
["x"] = -1922.9,
},
["Range"] = 17,
["TT"] = {
["y"] = -3331.6,
["x"] = -1922.9,
},
}, -- [27]
{
["CRange"] = 306,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3469.5,
["x"] = -1924.6,
},
["Range"] = 18.24,
["TT"] = {
["y"] = -3469.5,
["x"] = -1924.6,
},
}, -- [28]
{
["Done"] = {
294, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3550.6,
["x"] = -1968.6,
},
}, -- [29]
{
["PickUp"] = {
295, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3550.6,
["x"] = -1968.6,
},
}, -- [30]
{
["PickUp"] = {
299, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3591.7,
["x"] = -1994.2,
},
}, -- [31]
{
["Qpart"] = {
[299] = {
["4"] = "4",
},
},
["Zone"] = "11 (Wetlands)",
["Fillers"] = {
[295] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -3308.9,
["x"] = -1899.5,
},
["Range"] = 0.09,
["TT"] = {
["y"] = -3308.9,
["x"] = -1899.5,
},
}, -- [32]
{
["Qpart"] = {
[299] = {
["3"] = "3",
},
},
["Zone"] = "11 (Wetlands)",
["Fillers"] = {
[295] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -3370.5,
["x"] = -1846,
},
["Range"] = 0.11,
["TT"] = {
["y"] = -3370.5,
["x"] = -1846,
},
}, -- [33]
{
["Qpart"] = {
[299] = {
["2"] = "2",
},
},
["Zone"] = "11 (Wetlands)",
["Fillers"] = {
[295] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -3373.8,
["x"] = -1811.3,
},
["Range"] = 0.12,
["TT"] = {
["y"] = -3373.8,
["x"] = -1811.3,
},
}, -- [34]
{
["Qpart"] = {
[299] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Fillers"] = {
[295] = {
["1"] = "1",
["2"] = "2",
},
},
["Trigger"] = {
["y"] = -3444.4,
["x"] = -1833.7,
},
["Range"] = 0.14,
["TT"] = {
["y"] = -3444.4,
["x"] = -1833.7,
},
}, -- [35]
{
["Qpart"] = {
[295] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3399.3,
["x"] = -1826.1,
},
["Range"] = 98.6,
["TT"] = {
["y"] = -3399.3,
["x"] = -1826.1,
},
}, -- [36]
{
["CRange"] = 295,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3324.1,
["x"] = -1918.1,
},
["Range"] = 14.67,
["TT"] = {
["y"] = -3324.1,
["x"] = -1918.1,
},
}, -- [37]
{
["Done"] = {
295, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3550.4,
["x"] = -1968.8,
},
}, -- [38]
{
["PickUp"] = {
296, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3550.4,
["x"] = -1968.8,
},
}, -- [39]
{
["Done"] = {
299, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3591.6,
["x"] = -1994.2,
},
}, -- [40]
{
["CRange"] = 296,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3341.3,
["x"] = -1918.4,
},
["Range"] = 22.52,
["TT"] = {
["y"] = -3341.3,
["x"] = -1918.4,
},
}, -- [41]
{
["CRange"] = 296,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3489.9,
["x"] = -1691.5,
},
["Range"] = 5.4,
["TT"] = {
["y"] = -3489.9,
["x"] = -1691.5,
},
}, -- [42]
{
["Qpart"] = {
[296] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3567.2,
["x"] = -1763.1,
},
["Range"] = 0.14,
["TT"] = {
["y"] = -3567.2,
["x"] = -1763.1,
},
}, -- [43]
{
["CRange"] = 296,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3346.9,
["x"] = -1917.8,
},
["Range"] = 12.42,
["TT"] = {
["y"] = -3346.9,
["x"] = -1917.8,
},
}, -- [44]
{
["Done"] = {
296, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3549.5,
["x"] = -1968.2,
},
}, -- [45]
{
["ExtraLine"] = "Leave Excavation site",
["CRange"] = 464,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3293.6,
["x"] = -1814.4,
},
["Range"] = 17.2,
["TT"] = {
["y"] = -3293.6,
["x"] = -1814.4,
},
}, -- [46]
{
["CRange"] = 464,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3180.2,
["x"] = -1885.8,
},
["Range"] = 32.23,
["TT"] = {
["y"] = -3180.2,
["x"] = -1885.8,
},
}, -- [47]
{
["CRange"] = 464,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3215.3,
["x"] = -2110.2,
},
["Range"] = 111.81,
["TT"] = {
["y"] = -3215.3,
["x"] = -2110.2,
},
}, -- [48]
{
["Qpart"] = {
[464] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3363.3,
["x"] = -2187.3,
},
["Range"] = 86.58,
["TT"] = {
["y"] = -3363.3,
["x"] = -2187.3,
},
}, -- [49]
{
["PickUp"] = {
469, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3234.2,
["x"] = -2453.9,
},
}, -- [50]
{
["ExtraLine"] = "Vendor here",
["CRange"] = 464,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3188.6,
["x"] = -2465.2,
},
["Range"] = 4.64,
["TT"] = {
["y"] = -3188.6,
["x"] = -2465.2,
},
}, -- [51]
{
["Done"] = {
463, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3259.3,
["x"] = -2720.9,
},
}, -- [52]
{
["PickUp"] = {
276, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3259.3,
["x"] = -2720.9,
},
}, -- [53]
{
["Qpart"] = {
[276] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3911.7,
["x"] = -2976.8,
},
["Range"] = 328.23,
["TT"] = {
["y"] = -3911.7,
["x"] = -2976.8,
},
}, -- [54]
{
["Done"] = {
276, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3258.8,
["x"] = -2721.5,
},
}, -- [55]
{
["PickUp"] = {
277, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3258.8,
["x"] = -2721.5,
},
}, -- [56]
{
["Qpart"] = {
[277] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -2992.5,
["x"] = -2131.4,
},
["Range"] = 137.64,
["TT"] = {
["y"] = -2992.5,
["x"] = -2131.4,
},
}, -- [57]
{
["Qpart"] = {
[470] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -2871.1,
["x"] = -2220.4,
},
["Range"] = 58.01,
["TT"] = {
["y"] = -2871.1,
["x"] = -2220.4,
},
}, -- [58]
{
["Done"] = {
277, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3259.2,
["x"] = -2719.7,
},
}, -- [59]
{
["PickUp"] = {
275, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3259.2,
["x"] = -2719.7,
},
}, -- [60]
{
["Zone"] = "11 (Wetlands)",
["UseHS"] = 279,
["TT"] = {
["y"] = -3243.1,
["x"] = -2717,
},
}, -- [61]
{
["Done"] = {
279, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3761.2,
["x"] = -732.4,
},
}, -- [62]
{
["PickUp"] = {
281, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3761.2,
["x"] = -732.4,
},
}, -- [63]
{
["Done"] = {
469, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3683.8,
["x"] = -743.3,
},
}, -- [64]
{
["PickUp"] = {
484, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3683.8,
["x"] = -743.3,
},
}, -- [65]
{
["CRange"] = 464,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3682.1,
["x"] = -825.7,
},
["Range"] = 7.3,
["TT"] = {
["y"] = -3682.1,
["x"] = -825.7,
},
}, -- [66]
{
["ExtraLine"] = "Upstairs",
["Done"] = {
464, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3732.1,
["x"] = -797.7,
},
}, -- [67]
{
["PickUp"] = {
465, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3732.1,
["x"] = -797.7,
},
}, -- [68]
{
["CRange"] = 465,
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3680.9,
["x"] = -825.3,
},
["Range"] = 6.9,
["TT"] = {
["y"] = -3680.9,
["x"] = -825.3,
},
}, -- [69]
{
["Done"] = {
470, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3745.8,
["x"] = -876.4,
},
}, -- [70]
{
["Done"] = {
306, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3585.5,
["x"] = -865.1,
},
}, -- [71]
{
["ExtraLine"] = "Click Crate",
["Done"] = {
281, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3289.5,
["x"] = -947.8,
},
}, -- [72]
{
["PickUp"] = {
284, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3289.5,
["x"] = -947.8,
},
}, -- [73]
{
["ExtraLine"] = "Click Barrel",
["Done"] = {
284, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3201.8,
["x"] = -953,
},
}, -- [74]
{
["PickUp"] = {
285, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3201.8,
["x"] = -953,
},
}, -- [75]
{
["ExtraLine"] = "Click Barrel",
["Done"] = {
285, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3107.7,
["x"] = -966.8,
},
}, -- [76]
{
["PickUp"] = {
286, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3107.7,
["x"] = -966.8,
},
}, -- [77]
{
["Qpart"] = {
[289] = {
["3"] = "3",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -2976.4,
["x"] = -961.9,
},
["Fillers"] = {
[289] = {
["1"] = "1",
["2"] = "2",
},
},
["Range"] = 0.13,
["TT"] = {
["y"] = -2976.4,
["x"] = -961.9,
},
}, -- [78]
{
["Qpart"] = {
[289] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -2976.4,
["x"] = -961.9,
},
["Range"] = 85.62,
["TT"] = {
["y"] = -2976.4,
["x"] = -961.9,
},
}, -- [79]
{
["Qpart"] = {
[275] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Fillers"] = {
[484] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -2989.9,
["x"] = -2041.3,
},
["Range"] = 513.3,
["TT"] = {
["y"] = -2989.9,
["x"] = -2041.3,
},
}, -- [80]
{
["Fillers"] = {
[484] = {
["1"] = "1",
},
},
["Done"] = {
275, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3258.8,
["x"] = -2719.5,
},
}, -- [81]
{
["Qpart"] = {
[484] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -3338.6,
["x"] = -2635,
},
["Range"] = 170.55,
["TT"] = {
["y"] = -3338.6,
["x"] = -2635,
},
}, -- [82]
{
["Grind"] = 11951,
["Range"] = 72.15,
["Trigger"] = {
["y"] = -3523.1,
["x"] = -3011.1,
},
["level"] = 26,
["xp"] = 33000,
["TT"] = {
["y"] = -3523.1,
["x"] = -3011.1,
},
}, -- [83]
{
["ExtraLine"] = "Grind Whelps untill Hearthstone is up",
["Zone"] = "11 (Wetlands)",
["UseHS"] = 289,
["TT"] = {
["y"] = -3523.1,
["x"] = -3011.1,
},
}, -- [84]
{
["Done"] = {
289, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3791.6,
["x"] = -839.7,
},
}, -- [85]
{
["PickUp"] = {
290, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3791.6,
["x"] = -839.7,
},
}, -- [86]
{
["Done"] = {
286, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3761.1,
["x"] = -734.2,
},
}, -- [87]
{
["Done"] = {
484, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3685,
["x"] = -743,
},
}, -- [88]
{
["PickUp"] = {
471, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3685,
["x"] = -743,
},
}, -- [89]
{
["Qpart"] = {
[471] = {
["1"] = "1",
},
},
["Zone"] = "11 (Wetlands)",
["Trigger"] = {
["y"] = -2869.6,
["x"] = -1233.6,
},
["Range"] = 115.76,
["TT"] = {
["y"] = -2869.6,
["x"] = -1233.6,
},
}, -- [90]
{
["Done"] = {
471, -- [1]
},
["Zone"] = "11 (Wetlands)",
["TT"] = {
["y"] = -3684.5,
["x"] = -742.9,
},
}, -- [91]
{
["Name"] = "Ironforge, Dun Morogh",
["UseFlightPath"] = 1072,
["TT"] = {
["y"] = -3793.2,
["x"] = -782.1,
},
}, -- [92]
{
["Done"] = {
1072, -- [1]
},
["Zone"] = "1537 (Ironforge)",
["TT"] = {
["y"] = -4842.4,
["x"] = -1283.1,
},
}, -- [93]
{
["UpdMapID"] = 1,
},
},
--------- 27-28 Redridge Mountains ---
["27-28RedridgeMountains"] = {
{
["ExtraLine"] = "Train Abilitys",
["UseFlightPath"] = 1075,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -4821.8,
["x"] = -1153,
},
}, -- [94]
{
["Done"] = {
1075, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
["TT"] = {
["y"] = -8999.1,
["x"] = 801.8,
},
}, -- [95]
{
["CRange"] = 1076,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8964.9,
["x"] = 957.7,
},
["Range"] = 8.44,
["TT"] = {
["y"] = -8964.9,
["x"] = 957.7,
},
}, -- [96]
{
["CRange"] = 1076,
["Zone"] = "1519 (Stormwind City)",
["Trigger"] = {
["y"] = -8941.1,
["x"] = 986.2,
},
["Range"] = 4.76,
["TT"] = {
["y"] = -8941.1,
["x"] = 986.2,
},
}, -- [97]
{
["ExtraLine"] = "In the basement",
["Zone"] = "1519 (Stormwind City)",
["PickUp"] = {
335, -- [1]
},
["TT"] = {
["y"] = -8982.7,
["x"] = 1025.6,
},
}, -- [98]
{
["ExtraLine"] = "Train Abilitys",
["UseFlightPath"] = 128,
["Name"] = "Lakeshire, Redridge",
["TT"] = {
["y"] = -8835.8,
["x"] = 490.2,
},
}, -- [99]
{
["PickUp"] = {
128, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9413.5,
["x"] = -2255.2,
},
}, -- [100]
{
["PickUp"] = {
20, -- [1]
},
["LeaveQuests"] = {
1076, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9284.4,
["x"] = -2297.8,
},
}, -- [101]
{
["PickUp"] = {
91, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9216.1,
["x"] = -2215.4,
},
}, -- [103]
{
["ExtraLine"] = "Wanted Sign",
["Zone"] = "44 (Redridge Mountains)",
["PickUp"] = {
180, -- [1]
},
["TT"] = {
["y"] = -9248.6,
["x"] = -2151.8,
},
}, -- [104]
{
["SetHS"] = 169,
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9224.4,
["x"] = -2157.1,
},
}, -- [105]
{
["PickUp"] = {
34, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9245.8,
["x"] = -2045.8,
},
}, -- [106]
{
["Qpart"] = {
[34] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9289.5,
["x"] = -1912.8,
},
["Range"] = 0.12,
["TT"] = {
["y"] = -9289.5,
["x"] = -1912.8,
},
}, -- [107]
{
["Done"] = {
34, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9245.9,
["x"] = -2045.2,
},
}, -- [108]
{
["CRange"] = 20,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -8882.3,
["x"] = -2554.7,
},
["Fillers"] = {
[20] = {
["1"] = "1",
},
},
["Range"] = 30.81,
["TT"] = {
["y"] = -8882.3,
["x"] = -2554.7,
},
}, -- [109]
{
["CRange"] = 20,
["Zone"] = "44 (Redridge Mountains)",
["Fillers"] = {
[128] = {
["1"] = "1",
},
[20] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -8675.3,
["x"] = -2290.1,
},
["Range"] = 15.82,
["TT"] = {
["y"] = -8675.3,
["x"] = -2290.1,
},
}, -- [110]
{
["Qpart"] = {
[128] = {
["1"] = "1",
},
[20] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -8717,
["x"] = -2231.9,
},
["Range"] = 60.39,
["TT"] = {
["y"] = -8717,
["x"] = -2231.9,
},
}, -- [111]
{
["CRange"] = 20,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -8795.8,
["x"] = -2193.6,
},
["Range"] = 18.96,
["TT"] = {
["y"] = -8795.8,
["x"] = -2193.6,
},
}, -- [112]
{
["PickUp"] = {
219, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -8761.3,
["x"] = -2185.9,
},
}, -- [113]
{
["Qpart"] = {
[219] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -8781.4,
["x"] = -2194.3,
},
["Range"] = 521.03,
["TT"] = {
["y"] = -8781.4,
["x"] = -2194.3,
},
}, -- [114]
{
["Done"] = {
20, -- [1]
219, -- [2]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9284.5,
["x"] = -2296.9,
},
}, -- [115]
{
["CRange"] = 180,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9113.2,
["x"] = -2508.7,
},
["Range"] = 43.59,
["TT"] = {
["y"] = -9113.2,
["x"] = -2508.7,
},
}, -- [116]
{
["Qpart"] = {
[180] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Fillers"] = {
[91] = {
["1"] = "1",
},
},
["Trigger"] = {
["y"] = -9112,
["x"] = -3313.9,
},
["Range"] = 0.07,
["TT"] = {
["y"] = -9112,
["x"] = -3313.9,
},
}, -- [117]
{
["Qpart"] = {
[91] = {
["1"] = "1",
},
},
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9109.4,
["x"] = -3311,
},
["Range"] = 80.47,
["TT"] = {
["y"] = -9109.4,
["x"] = -3311,
},
}, -- [118]
{
["Zone"] = "44 (Redridge Mountains)",
["UseHS"] = 180,
["TT"] = {
["y"] = -9221.3,
["x"] = -3222.4,
},
}, -- [119]
{
["Done"] = {
91, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9215.4,
["x"] = -2214.9,
},
}, -- [120]
{
["Done"] = {
180, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9218.7,
["x"] = -2222.3,
},
}, -- [121]
{
["Done"] = {
128, -- [1]
},
["Zone"] = "44 (Redridge Mountains)",
["TT"] = {
["y"] = -9413.3,
["x"] = -2255.6,
},
}, -- [122]
{
["UpdMapID"] = 1,
},
},
--------- 28-30 Duskwood ---
["28-30Duskwood"] = {
{
["ExtraLine"] = "Time for Duskwood",
["CRange"] = 335,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9698.9,
["x"] = -1892.2,
},
["Range"] = 35.72,
["TT"] = {
["y"] = -9698.9,
["x"] = -1892.2,
},
}, -- [1]
{
["CRange"] = 335,
["Zone"] = "44 (Redridge Mountains)",
["Trigger"] = {
["y"] = -9890,
["x"] = -1714,
},
["Range"] = 26.68,
["TT"] = {
["y"] = -9890,
["x"] = -1714,
},
}, -- [2]
{
["CRange"] = 335,
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10103.2,
["x"] = -1254.3,
},
["Range"] = 43.43,
["TT"] = {
["y"] = -10103.2,
["x"] = -1254.3,
},
}, -- [3]
{
["Qpart"] = {
[335] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10363.6,
["x"] = -1282.3,
},
["Range"] = 0.1,
["TT"] = {
["y"] = -10363.6,
["x"] = -1282.3,
},
}, -- [4]
{
["PickUp"] = {
66, -- [1]
101, -- [2]
},
["TT"] = {
["y"] = -10532.1,
["x"] = -1213.6,
},
["Zone"] = "10 (Duskwood)",
}, -- [5]
{
["SetHS"] = 5,
["TT"] = {
["y"] = -10515.7,
["x"] = -1161.6,
},
["Zone"] = "10 (Duskwood)",
}, -- [6]
{
["PickUp"] = {
56, -- [1]
},
["TT"] = {
["y"] = -10560,
["x"] = -1155.3,
},
["Zone"] = "10 (Duskwood)",
}, -- [7]
{
["Done"] = {
66, -- [1]
},
["TT"] = {
["y"] = -10560,
["x"] = -1124.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [8]
{
["PickUp"] = {
67, -- [1]
},
["TT"] = {
["y"] = -10560,
["x"] = -1124.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [9]
{
["PickUp"] = {
173, -- [1]
},
["TT"] = {
["y"] = -10581.9,
["x"] = -1198.6,
},
["Zone"] = "10 (Duskwood)",
}, -- [10]
{
["PickUp"] = {
164, -- [1]
163, -- [2]
165, -- [3]
},
["TT"] = {
["y"] = -10593.5,
["x"] = -1200.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [11]
{
["GetFP"] = 173,
["TT"] = {
["y"] = -10514.2,
["x"] = -1259.2,
},
["Zone"] = "10 (Duskwood)",
}, -- [12]
{
["Qpart"] = {
[56] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10999.5,
["x"] = -1307.9,
},
["Range"] = 42.97,
["TT"] = {
["y"] = -10999.5,
["x"] = -1307.9,
},
}, -- [13]
{
["Qpart"] = {
[173] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10502.4,
["x"] = -889.6,
},
["Range"] = 139.84,
["TT"] = {
["y"] = -10502.4,
["x"] = -889.6,
},
}, -- [14]
{
["Done"] = {
56, -- [1]
},
["TT"] = {
["y"] = -10561.3,
["x"] = -1153.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [15]
{
["PickUp"] = {
57, -- [1]
},
["TT"] = {
["y"] = -10561.3,
["x"] = -1153.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [16]
{
["Done"] = {
173, -- [1]
},
["TT"] = {
["y"] = -10580.9,
["x"] = -1198.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [17]
{
["PickUp"] = {
221, -- [1]
},
["TT"] = {
["y"] = -10580.9,
["x"] = -1198.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [18]
{
["Qpart"] = {
[221] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10493.6,
["x"] = -906.8,
},
["Range"] = 164.83,
["TT"] = {
["y"] = -10493.6,
["x"] = -906.8,
},
}, -- [19]
{
["Done"] = {
221, -- [1]
},
["TT"] = {
["y"] = -10579.9,
["x"] = -1200.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [20]
{
["PickUp"] = {
222, -- [1]
},
["TT"] = {
["y"] = -10579.9,
["x"] = -1200.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [21]
{
["Qpart"] = {
[222] = {
["1"] = "1",
["2"] = "2",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -11060.4,
["x"] = -1135.8,
},
["Range"] = 64.33,
["TT"] = {
["y"] = -11060.4,
["x"] = -1135.8,
},
}, -- [22]
{
["Done"] = {
163, -- [1]
},
["TT"] = {
["y"] = -10734.1,
["x"] = 338.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [23]
{
["PickUp"] = {
5, -- [1]
},
["TT"] = {
["y"] = -10734.1,
["x"] = 338.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [24]
{
["Fillers"] = {
[57] = {
["1"] = "1",
["2"] = "2",
},
[101] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Done"] = {
165, -- [1]
},
["TT"] = {
["y"] = -10283.3,
["x"] = 74.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [25]
{
["PickUp"] = {
148, -- [1]
},
["TT"] = {
["y"] = -10283.3,
["x"] = 74.9,
},
["Fillers"] = {
[57] = {
["1"] = "1",
["2"] = "2",
},
[101] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "10 (Duskwood)",
}, -- [26]
{
["Qpart"] = {
[57] = {
["1"] = "1",
["2"] = "2",
},
[101] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10428.8,
["x"] = 301.2,
},
["Range"] = 96.43,
["TT"] = {
["y"] = -10428.8,
["x"] = 301.2,
},
}, -- [27]
{
["ExtraLine"] = "Click Grave",
["TT"] = {
["y"] = -10241.5,
["x"] = 354.6,
},
["PickUp"] = {
225, -- [1]
},
["Zone"] = "10 (Duskwood)",
}, -- [28]
{
["Done"] = {
164, -- [1]
},
["TT"] = {
["y"] = -10330.4,
["x"] = 623.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [29]
{
["PickUp"] = {
95, -- [1]
},
["TT"] = {
["y"] = -10330.4,
["x"] = 623.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [30]
{
["TT"] = {
["y"] = -10330.4,
["x"] = 623.1,
},
["UseHS"] = 95,
["Zone"] = "10 (Duskwood)",
}, -- [31]
{
["Done"] = {
5, -- [1]
},
["TT"] = {
["y"] = -10500.8,
["x"] = -1158.8,
},
["Zone"] = "10 (Duskwood)",
}, -- [32]
{
["PickUp"] = {
93, -- [1]
},
["TT"] = {
["y"] = -10497.6,
["x"] = -1159.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [33]
{
["Qpart"] = {
[93] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10512.9,
["x"] = -1188.8,
},
["Range"] = 170.38,
["TT"] = {
["y"] = -10512.9,
["x"] = -1188.8,
},
}, -- [34]
{
["Done"] = {
93, -- [1]
},
["TT"] = {
["y"] = -10497.6,
["x"] = -1159.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [33]
{
["PickUp"] = {
240, -- [1]
},
["TT"] = {
["y"] = -10500.2,
["x"] = -1161.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [35]
{
["Done"] = {
57, -- [1]
},
["TT"] = {
["y"] = -10559.4,
["x"] = -1153.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [36]
{
["PickUp"] = {
58, -- [1]
},
["TT"] = {
["y"] = -10559.4,
["x"] = -1153.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [37]
{
["Done"] = {
225, -- [1]
},
["TT"] = {
["y"] = -10572.7,
["x"] = -1126.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [38]
{
["PickUp"] = {
227, -- [1]
},
["TT"] = {
["y"] = -10572.7,
["x"] = -1126.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [39]
{
["Done"] = {
227, -- [1]
},
["TT"] = {
["y"] = -10560.8,
["x"] = -1153.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [40]
{
["Done"] = {
148, -- [1]
101, -- [2]
},
["TT"] = {
["y"] = -10532.6,
["x"] = -1212.6,
},
["Zone"] = "10 (Duskwood)",
}, -- [42]
{
["PickUp"] = {
149, -- [1]
},
["TT"] = {
["y"] = -10532.6,
["x"] = -1212.6,
},
["Zone"] = "10 (Duskwood)",
}, -- [43]
{
["Done"] = {
222, -- [1]
},
["TT"] = {
["y"] = -10582,
["x"] = -1199.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [44]
{
["PickUp"] = {
223, -- [1]
},
["TT"] = {
["y"] = -10582,
["x"] = -1199.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [45]
{
["Done"] = {
223, -- [1]
},
["TT"] = {
["y"] = -10598.6,
["x"] = -1200.2,
},
["Zone"] = "10 (Duskwood)",
}, -- [46]
{
["Done"] = {
149, -- [1]
},
["TT"] = {
["y"] = -10781.2,
["x"] = -1379,
},
["Zone"] = "10 (Duskwood)",
}, -- [47]
{
["PickUp"] = {
154, -- [1]
},
["TT"] = {
["y"] = -10781.2,
["x"] = -1379,
},
["Zone"] = "10 (Duskwood)",
}, -- [48]
{
["Done"] = {
154, -- [1]
},
["TT"] = {
["y"] = -10532.7,
["x"] = -1213.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [49]
{
["PickUp"] = {
157, -- [1]
},
["TT"] = {
["y"] = -10532.7,
["x"] = -1213.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [50]
{
["Done"] = {
95, -- [1]
},
["TT"] = {
["y"] = -11115.7,
["x"] = -513.8,
},
["Zone"] = "10 (Duskwood)",
}, -- [51]
{
["PickUp"] = {
230, -- [1]
},
["TT"] = {
["y"] = -11115.7,
["x"] = -513.8,
},
["Zone"] = "10 (Duskwood)",
}, -- [52]
{
["Done"] = {
240, -- [1]
},
["TT"] = {
["y"] = -10730.6,
["x"] = 337.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [53]
{
["Done"] = {
157, -- [1]
},
["TT"] = {
["y"] = -10283.2,
["x"] = 74.6,
},
["Zone"] = "10 (Duskwood)",
}, -- [54]
{
["PickUp"] = {
158, -- [1]
},
["TT"] = {
["y"] = -10283.2,
["x"] = 74.6,
},
["Zone"] = "10 (Duskwood)",
}, -- [55]
{
["Qpart"] = {
[58] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10359.4,
["x"] = 179.8,
},
["Range"] = 84.67,
["TT"] = {
["y"] = -10359.4,
["x"] = 179.8,
},
}, -- [56]
{
["Done"] = {
230, -- [1]
},
["TT"] = {
["y"] = -10330.1,
["x"] = 623.3,
},
["Zone"] = "10 (Duskwood)",
}, -- [57]
{
["PickUp"] = {
262, -- [1]
},
["TT"] = {
["y"] = -10330.1,
["x"] = 623.3,
},
["Zone"] = "10 (Duskwood)",
}, -- [58]
{
["Done"] = {
67, -- [1]
},
["TT"] = {
["y"] = -10956.9,
["x"] = 1563.7,
},
["Zone"] = "40 (Westfall)",
}, -- [59]
{
["PickUp"] = {
68, -- [1]
},
["TT"] = {
["y"] = -10956.9,
["x"] = 1563.7,
},
["Zone"] = "40 (Westfall)",
}, -- [60]
{
["UseFlightPath"] = 58,
["Name"] = "Darkshire, Duskwood",
["TT"] = {
["y"] = -10628.3,
["x"] = 1036.4,
},
}, -- [61]
{
["Done"] = {
262, -- [1]
},
["TT"] = {
["y"] = -10532.3,
["x"] = -1213.2,
},
["Zone"] = "10 (Duskwood)",
}, -- [62]
{
["PickUp"] = {
265, -- [1]
},
["TT"] = {
["y"] = -10532.3,
["x"] = -1213.2,
},
["Zone"] = "10 (Duskwood)",
}, -- [63]
{
["Done"] = {
58, -- [1]
},
["TT"] = {
["y"] = -10561.9,
["x"] = -1155.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [64]
{
["Done"] = {
265, -- [1]
68, -- [2]
},
["TT"] = {
["y"] = -10560.3,
["x"] = -1124.8,
},
["Zone"] = "10 (Duskwood)",
}, -- [65]
{
["PickUp"] = {
69, -- [1]
266, -- [2]
},
["TT"] = {
["y"] = -10560.3,
["x"] = -1124.8,
},
["Zone"] = "10 (Duskwood)",
}, -- [66]
{
["Done"] = {
158, -- [1]
266, -- [2]
},
["TT"] = {
["y"] = -10519,
["x"] = -1158.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [67]
{
["PickUp"] = {
453, -- [1]
156, -- [2]
},
["TT"] = {
["y"] = -10519,
["x"] = -1158.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [68]
{
["UseFlightPath"] = 453,
["Name"] = "Sentinel Hill, Westfall",
["TT"] = {
["y"] = -10513.9,
["x"] = -1259.2,
},
}, -- [69]
{
["Done"] = {
453, -- [1]
},
["TT"] = {
["y"] = -10729.6,
["x"] = 341.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [70]
{
["PickUp"] = {
268, -- [1]
},
["TT"] = {
["y"] = -10729.6,
["x"] = 341.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [71]
{
["Done"] = {
268, -- [1]
},
["TT"] = {
["y"] = -10330.1,
["x"] = 623.3,
},
["Zone"] = "10 (Duskwood)",
}, -- [72]
{
["PickUp"] = {
323, -- [1]
},
["TT"] = {
["y"] = -10330.1,
["x"] = 623.3,
},
["Zone"] = "10 (Duskwood)",
}, -- [73]
{
["Qpart"] = {
[323] = {
["1"] = "1",
["3"] = "3",
["2"] = "2",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10406.8,
["x"] = 335,
},
["Range"] = 116.74,
["TT"] = {
["y"] = -10406.8,
["x"] = 335.2,
},
}, -- [74]
{
["Qpart"] = {
[156] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10553.5,
["x"] = 300.4,
},
["Range"] = 62.55,
["TT"] = {
["y"] = -10553.5,
["x"] = 300.4,
},
}, -- [75]
{
["Done"] = {
323, -- [1]
},
["TT"] = {
["y"] = -10329.5,
["x"] = 622.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [76]
{
["PickUp"] = {
269, -- [1]
},
["TT"] = {
["y"] = -10329.5,
["x"] = 622.5,
},
["Zone"] = "10 (Duskwood)",
}, -- [77]
{
["UseFlightPath"] = 156,
["Name"] = "Darkshire, Duskwood",
["TT"] = {
["y"] = -10628.3,
["x"] = 1036.4,
},
}, -- [78]
{
["Done"] = {
156, -- [1]
},
["TT"] = {
["y"] = -10517.2,
["x"] = -1159.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [79]
{
["PickUp"] = {
159, -- [1]
},
["TT"] = {
["y"] = -10517.2,
["x"] = -1159.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [80]
{
["CRange"] = 159,
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10140.4,
["x"] = -711.5,
},
["Range"] = 73.92,
["TT"] = {
["y"] = -10140.4,
["x"] = -711.5,
},
}, -- [81]
{
["CRange"] = 159,
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10054.3,
["x"] = -442.7,
},
["Range"] = 68.94,
["TT"] = {
["y"] = -10054.3,
["x"] = -442.7,
},
}, -- [82]
{
["Done"] = {
159, -- [1]
},
["TT"] = {
["y"] = -10283.3,
["x"] = 75.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [83]
{
["PickUp"] = {
133, -- [1]
},
["TT"] = {
["y"] = -10283.3,
["x"] = 75.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [84]
{
["Qpart"] = {
[133] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -10374.9,
["x"] = 226.6,
},
["Range"] = 65.28,
["TT"] = {
["y"] = -10374.9,
["x"] = 226.6,
},
}, -- [85]
{
["Done"] = {
133, -- [1]
},
["TT"] = {
["y"] = -10283,
["x"] = 75.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [86]
{
["PickUp"] = {
134, -- [1]
},
["TT"] = {
["y"] = -10283,
["x"] = 75.7,
},
["Zone"] = "10 (Duskwood)",
}, -- [87]
{
["Qpart"] = {
[134] = {
["1"] = "1",
},
},
["Zone"] = "10 (Duskwood)",
["Trigger"] = {
["y"] = -11091.5,
["x"] = -68.8,
},
["Range"] = 0.1,
["TT"] = {
["y"] = -11091.5,
["x"] = -68.8,
},
}, -- [88]
{
["Done"] = {
134, -- [1]
},
["TT"] = {
["y"] = -10283,
["x"] = 75.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [89]
{
["PickUp"] = {
160, -- [1]
},
["TT"] = {
["y"] = -10283,
["x"] = 75.1,
},
["Zone"] = "10 (Duskwood)",
}, -- [90]
{
["ExtraLine"] = "Hearthstone or run",
["Done"] = {
160, -- [1]
},
["TT"] = {
["y"] = -10552.1,
["x"] = -1108.8,
},
["Zone"] = "10 (Duskwood)",
}, -- [91]
{
["PickUp"] = {
251, -- [1]
},
["TT"] = {
["y"] = -10552.1,
["x"] = -1108.8,
},
["Zone"] = "10 (Duskwood)",
}, -- [92]
{
["Done"] = {
251, -- [1]
},
["TT"] = {
["y"] = -10573.4,
["x"] = -1128.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [93]
{
["PickUp"] = {
401, -- [1]
},
["TT"] = {
["y"] = -10573.4,
["x"] = -1128.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [94]
{
["Done"] = {
401, -- [1]
},
["TT"] = {
["y"] = -10573.4,
["x"] = -1128.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [95]
{
["PickUp"] = {
252, -- [1]
},
["TT"] = {
["y"] = -10573.4,
["x"] = -1128.4,
},
["Zone"] = "10 (Duskwood)",
}, -- [96]
{
["Done"] = {
252, -- [1]
},
["TT"] = {
["y"] = -10552.6,
["x"] = -1108.9,
},
["Zone"] = "10 (Duskwood)",
}, -- [97]
{
["Grind"] = 11951,
["Range"] = 442.15,
["Trigger"] = {
["y"] = -10552.6,
["x"] = -1108.9,
},
["level"] = 30,
["xp"] = 1,
["TT"] = {
["y"] = -10552.6,
["x"] = -1108.9,
},
}, -- [98]
{
["UseFlightPath"] = 269,
["Name"] = "Stormwind, Elwynn",
["TT"] = {
["y"] = -10513.8,
["x"] = -1259,
},
}, -- [99]
{
["PickUp"] = {
2923, -- [1]
},
["TT"] = {
["y"] = -8555.4,
["x"] = 835.3,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [100]
{
["ExtraLine"] = "He patrolls around",
["TT"] = {
["y"] = -8543.2,
["x"] = 833.9,
},
["PickUp"] = {
1274, -- [1]
},
["Zone"] = "1519 (Stormwind City)",
}, -- [101]
{
["Done"] = {
269, -- [1]
},
["TT"] = {
["y"] = -8529.7,
["x"] = 854.9,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [102]
{
["PickUp"] = {
270, -- [1]
},
["TT"] = {
["y"] = -8529.7,
["x"] = 854.9,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [103]
{
["Done"] = {
1274, -- [1]
},
["TT"] = {
["y"] = -8506.6,
["x"] = 328.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [104]
{
["PickUp"] = {
1241, -- [1]
},
["TT"] = {
["y"] = -8506.6,
["x"] = 328.5,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [105]
{
["Done"] = {
1241, -- [1]
},
["TT"] = {
["y"] = -8982.2,
["x"] = 398,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [106]
{
["PickUp"] = {
1242, -- [1]
},
["TT"] = {
["y"] = -8982.2,
["x"] = 398,
},
["Zone"] = "1519 (Stormwind City)",
}, -- [107]
{
["UpdMapID"] = 1,
},
},
}
if (not AAPClassic.Path) then
AAPClassic.Path = {}
end
for AAP_index,AAP_value in pairs(AAPClassic.PathA1) do
AAPClassic.Path[AAP_index] = AAP_value
end
AAPClassic.PathA1 = nil
end |
local poses = {
['ergong'] = {
['normal'] = {'body', 'mouth_smile', 'eye_normal', 'eyebrow_normal', 'hair'},
},
['gaotian'] = {
['normal'] = {'body', 'mouth_smile', 'eye_normal', 'eyebrow_normal', 'hair'},
['cry'] = {'body', 'mouth_smile', 'eye_cry', 'eyebrow_normal', 'hair'},
},
['qianye'] = {
['normal'] = {'body', 'mouth_close', 'eye_normal', 'eyebrow_normal', 'hair'},
},
['xiben'] = {
['normal'] = {'body', 'mouth_close', 'eye_normal', 'eyebrow_normal', 'hair'},
},
}
function get_pose(obj, pose_name)
return poses[obj.luaGlobalName] and poses[obj.luaGlobalName][pose_name]
end
|
require "lizards"
local rex = require "rex_pcre"
if (#arg > 0) then
local args = {}
rx = rex.new('^--([A-Za-z0-9]+)=(.*)$')
for i = 1, #arg,1
do
local match, endmatch, subs = rx:tfind(arg[i])
if (match) then
args[subs[1]] = subs[2]
end
end
if (not args.layouts) then
print("Requires --layouts=<file>")
return
end
local layouts = lizards.layouts_t(lizards.FORMAT_FILE_JS, args.layouts)
if (layouts.layouts:size() == 0) then
print("Failed to load layout file");
return
end
if (not args.input) then
print("Requires --input=<file>")
return
end
local template = lizards.template_t(layouts, lizards.FORMAT_FILE_JS, args.input)
local grid = template:realize()
local output = grid:output(0)
if (args.hit) then
local ha = {}
for w in string.gmatch(args.hit, "[^,]+") do
table.insert(ha, w)
end
local hit = output:hit(ha[1], ha[2], ha[3], ha[4])
if (not hit == nil)
then
print(hit)
end
end
if (args.output) then
template:save(args.output)
end
if (args.js) then
output:json(args.js)
end
if (args.svg) then
output:svg(args.svg)
end
end
|
-- WORK LAYOUT
---------------------------------------------------------------------------
function applyWorkLayout()
-- local laptopScreen = hs.screen.allScreens()[1]:name()
-- local thunder1 = hs.screen.allScreens()[2]:name()
-- local thunder2 = hs.screen.allScreens()[3]:name()
local primaryScreen = hs.screen.primaryScreen() -- primary screen
local mainScreen = hs.screen.mainScreen() -- currently focused window screen
local middleScreen = hs.screen.primaryScreen()
local leftScreen = hs.screen.primaryScreen():toWest()
local rightScreen = hs.screen.primaryScreen():toEast()
print("----------------------")
print(rightScreen)
print(middleScreen)
print(leftScreen)
print("----------------------")
print(hs.window.frontmostWindow():application())
local workLayout = {
{"Google Chrome", nil, leftScreen, hs.layout.right50, nil, nil},
{"Adobe Photoshop CC 2018", nil, rightScreen, hs.layout.maximized, nil, nil},
{"Adobe Illustrator CC 2018", nil, rightScreen, hs.layout.maximized, nil, nil},
{"iTerm2", nil, rightScreen, hs.layout.maximized, nil, nil},
{"Finder", nil, middleScreen, hs.layout.right50, nil, nil},
{"Mail", nil, middleScreen, hs.layout.left50, nil, nil},
{"Calendar", nil, middleScreen, hs.layout.right50, nil, nil},
{"Spotify", nil, middleScreen, hs.layout.right50, nil, nil},
{"Slack", nil, middleScreen, hs.layout.left50, nil, nil},
-- {"Google Chrome", hs.appfinder.windowFromWindowTitlePattern('Developer Tools'), rightScreen, hs.layout.left30, nil, nil},
{"InVision", nil, leftScreen, hs.layout.left50, nil, nil},
{"Github", nil, middleScreen, hs.layout.right50, nil, nil},
}
hs.layout.apply(workLayout)
end
-- MOBILE LAYOUT
---------------------------------------------------------------------------
function applyMobileLayout()
local primaryScreen = hs.screen.primaryScreen() -- primary screen
local mainScreen = hs.screen.mainScreen() -- currently focused window screen
local allWindows = hs.window.allWindows()
for k,v in pairs(allWindows) do
print(k,v:application())
local mobileLayout = {
{v:application(), nil, primaryScreen, hs.layout.maximized, nil, nil},
}
hs.layout.apply(mobileLayout)
end
end
-- APPLY LAYOUT FUNCTION
---------------------------------------------------------------------------
function applyWindowLayout()
print(hs.application.allWindows)
local numberOfScreens = #hs.screen.allScreens()
if numberOfScreens>1 then
applyWorkLayout()
else
applyMobileLayout()
end
end
|
local Instance = import("../Instance")
describe("instances.BoolValue", function()
it("should instantiate", function()
local instance = Instance.new("BoolValue")
assert.not_nil(instance)
assert.equal("Value", instance.Name)
assert.equal(false, instance.Value)
end)
end) |
local No, parent = torch.class('fbnn.L2Normalize', 'nn.Module')
--[[
This module normalizes it's input to unit euclidean norm
Authors: Mark Tygert, Soumith Chintala
]]--
function No:__init()
parent.__init(self)
end
function No:updateOutput(input)
-- store the number of dimensions of the input
local ldim = input:nDimension()
assert(ldim <= 2,
'This module should only (realistically) '
.. 'be used for 1-D or 2-D inputs')
self.output:resizeAs(input)
self.output:copy(input)
-- compute the Euclidean norm over the last dimension of the input
self.norms = self.norms or input.new()
torch.norm(self.norms, input, 2, ldim)
-- divide the input by the Euclidean norms to produce the output
self.output:cdiv(self.norms:expand(self.output:size()))
return self.output
end
function No:updateGradInput(input,gradOutput)
self.gradInput:resizeAs(gradOutput)
self.gradInput:copy(gradOutput)
-- store the number of dimensions of the input
local ldim = input:nDimension()
local proj = self.gradInput
-- compute the negative of the dot product between the normalized input,
-- that is, self.output, and gradInput=gradOutput
local dotprod = proj:clone():cmul(self.output):sum(ldim):mul(-1)
-- orthogonalize gradInput=gradOutput to the normalized input,
-- that is, self.output
proj:add(self.output:clone():cmul(dotprod:expand(proj:size())))
-- normalize by the norms of the input
proj:cdiv(self.norms:expand(proj:size()))
return proj
end
|
if onServer() then
Player():addScriptOnce("data/scripts/player/beginnersblessing.lua")
end |
local Convolve, parent = torch.class('nn.Convolve', 'nn.Module')
function Convolve:__init(nInputPlane, kernel)
parent.__init(self)
-- get args
self.nInputPlane = nInputPlane or 1
self.kernel = kernel or torch.Tensor(9,9):fill(1)
local kdim = self.kernel:nDimension()
-- check args
if kdim ~= 2 and kdim ~= 1 then
error('<Convolve> averaging kernel must be 2D or 1D')
end
-- padding values
local padH = math.floor(self.kernel:size(1)/2)
local padW = padH
if kdim == 2 then
padW = math.floor(self.kernel:size(2)/2)
end
-- create convolver
self.convolver = nn.Sequential()
self.convolver:add(nn.SpatialZeroPadding(padW, padW, padH, padH))
if kdim == 2 then
self.convolver:add(nn.SpatialConvolution(self.nInputPlane, 1, self.kernel:size(2), self.kernel:size(1)))
else
self.convolver:add(nn.SpatialConvolutionMap(nn.tables.oneToOne(self.nInputPlane), self.kernel:size(1), 1))
self.convolver:add(nn.SpatialConvolution(self.nInputPlane, 1, 1, self.kernel:size(1)))
end
-- set kernel and bias
if kdim == 2 then
for i = 1,self.nInputPlane do
self.convolver.modules[2].weight[1][i] = self.kernel
end
self.convolver.modules[2].bias:zero()
else
for i = 1,self.nInputPlane do
self.convolver.modules[2].weight[i]:copy(self.kernel)
self.convolver.modules[3].weight[1][i]:copy(self.kernel)
end
self.convolver.modules[2].bias:zero()
self.convolver.modules[3].bias:zero()
end
end
function Convolve:updateOutput(input)
-- compute output
self.output = self.convolver:updateOutput(input)
-- done
return self.output
end
function Convolve:updateGradInput(input, gradOutput)
-- resize grad
self.gradInput:resizeAs(input):zero()
-- backprop
self.gradInput:add(self.convolver:updateGradInput(input, gradOutput))
-- done
return self.gradInput
end
function Convolve:clearState()
self.convolver:clearState()
return parent.clearState(self)
end
|
--定义log输出接口
local core = require "skynet.core"
----------------------------------------------------------------------------------------
local _TO_STRING = nil
local _SESSION = 0
local function log_tostring(logLevel, tag, ...)
if _TO_STRING == nil then
_TO_STRING = require "util/pprint".pformat
end
local args = {...}
-- select will get an accurate count of array len, counting trailing nils
local len = select('#', ...)
local str = {}
_SESSION = _SESSION + 1
table.insert(str, string.format("[%s] [%s] [%d] ", logLevel, os.date("%Y-%m-%d %H:%M:%S"), _SESSION))
table.insert(str, tag)
table.insert(str, " ==> ")
for ix = 1,len do
table.insert(str, _TO_STRING(args[ix], nil, nil))
table.insert(str, ' ')
end
return table.concat(str)
end
----------------------------------------------------------------------------------------
local LOG = {}
local _LEVEL = {
ERROR = 0,
WARNING = 1,
INFO = 2,
DEBUG = 3,
}
local _LOG_LEVEL = _LEVEL.INFO
function LOG.SetLevel(logLevel)
_LOG_LEVEL = logLevel
end
function LOG.Error(tag, ...)
if _LOG_LEVEL >= _LEVEL.ERROR then
core.send(".logger", 0, 0, log_tostring("ERROR", tag, ...))
end
end
function LOG.Warning(tag, ...)
if _LOG_LEVEL >= _LEVEL.WARNING then
core.send(".logger", 0, 0, log_tostring("WARNING", tag, ...))
end
end
function LOG.Info(tag, ...)
if _LOG_LEVEL >= _LEVEL.INFO then
core.send(".logger", 0, 0, log_tostring("INFO", tag, ...))
end
end
function LOG.Debug(tag, ...)
if _LOG_LEVEL >= _LEVEL.DEBUG then
core.send(".logger", 0, 0, log_tostring("DEBUG", tag, ...))
end
end
----------------------------------------------------------------------------------------
return LOG
|
local luaunit = require("luaunit")
local mockagne = require("mockagne")
local aws_sagemaker_handler = require("aws_sagemaker_handler")
test_aws_sagemaker_handler = {
job_name = 'autopilot_job_name',
query = [[SELECT ::schema."SME_AUTOPILOT_TRAINING_UDF"(
:job_name ,
:aws_s3_connection ,
:aws_region ,
:role ,
:s3_bucket_uri,
:s3_output_path,
:target_attribute_name ,
:problem_type ,
:objective ,
:total_job_runtime_in_seconds ,
:max_candidates ,
:max_runtime_per_training_job_in_seconds
)]],
params = {
schema = 'schema_name',
job_name = 'job_name',
aws_s3_connection = 'aws_s3_connection',
aws_region = 'aws_region',
role = 'role',
s3_bucket_uri = 's3_bucket_uri',
s3_output_path = 's3_output_path',
target_attribute_name = 'target_attribute_name',
problem_type = 'problem_type',
objective = 'objective',
total_job_runtime_in_seconds = 'total_job_runtime_in_seconds',
max_candidates = 'max_candidates',
max_runtime_per_training_job_in_seconds = 'max_runtime_per_training_job_in_seconds'
}
}
local function mock_pquery_train(exa_mock, query_str, query_params, success, job_name)
mockagne.when(exa_mock.pquery(query_str, query_params)).thenAnswer(success, job_name)
end
local function mock_error_return_nil(exa_mock)
mockagne.when(exa_mock.error()).thenAnswer(nil)
end
function test_aws_sagemaker_handler.setUp()
exa_mock = mockagne.getMock()
_G.global_env = exa_mock
mock_error_return_nil(exa_mock)
end
function test_aws_sagemaker_handler.test_train_autopilot_success()
mock_pquery_train(
exa_mock,
test_aws_sagemaker_handler.query,
test_aws_sagemaker_handler.params,
true,
{{test_aws_sagemaker_handler.job_name}})
local result = aws_sagemaker_handler.train_autopilot(
'schema_name',
'job_name',
'aws_s3_connection',
'aws_region',
'role',
's3_bucket_uri',
's3_output_path',
'target_attribute_name',
'problem_type',
'objective',
'total_job_runtime_in_seconds',
'max_candidates',
'max_runtime_per_training_job_in_seconds'
)
luaunit.assertEquals(result, test_aws_sagemaker_handler.job_name)
end
os.exit(luaunit.LuaUnit.run()) |
---@class ScriptItemInterface
ScriptItemInterface = {}
ScriptItemInterface.types = {weapon = "Weapon", item = "Normal", food = "Food"}
ScriptItemInterface.newItemType = function(name, displayname, type, inventoryIcon)
local item = createNewScriptItem("Base", name, displayname, type, inventoryIcon);
return item;
end
ScriptItemInterface.cloneItemType = function(newName, originalFullName)
local item = cloneItemType(newName, originalFullName)
return item;
end
ScriptItemInterface.instanceItemType = function(item)
local inst = instanceItem(item);
end
|
local sin, pi = math.sin, math.pi
local function fft_bitreverse(v, n)
local j = 0
for i=0,2*n-4,2 do
if i < j then
v[i+1], v[i+2], v[j+1], v[j+2] = v[j+1], v[j+2], v[i+1], v[i+2]
end
local k = n
while k <= j do j = j - k; k = k / 2 end
j = j + k
end
end
local function fft_transform(v, n, dir)
if n <= 1 then return end
fft_bitreverse(v, n)
local dual = 1
repeat
local dual2 = 2*dual
for i=1,2*n-1,2*dual2 do
local j = i+dual2
local ir, ii = v[i], v[i+1]
local jr, ji = v[j], v[j+1]
v[j], v[j+1] = ir - jr, ii - ji
v[i], v[i+1] = ir + jr, ii + ji
end
local theta = dir * pi / dual
local s, s2 = sin(theta), 2.0 * sin(theta * 0.5)^2
local wr, wi = 1.0, 0.0
for a=3,dual2-1,2 do
wr, wi = wr - s*wi - s2*wr, wi + s*wr - s2*wi
for i=a,a+2*(n-dual2),2*dual2 do
local j = i+dual2
local jr, ji = v[j], v[j+1]
local dr, di = wr*jr - wi*ji, wr*ji + wi*jr
local ir, ii = v[i], v[i+1]
v[j], v[j+1] = ir - dr, ii - di
v[i], v[i+1] = ir + dr, ii + di
end
end
dual = dual2
until dual >= n
end
local n = 64
local v = {}
for k = 1, 2*n do
v[k] = (k - 1) % (n / 4)
end
fft_transform(v, n, -1)
for k = 1, 2*n do print(v[k]) end
fft_transform(v, n, 1)
for k = 1, 2*n do print(v[k] / n) end
|
--[[
Copyright (C) 2011-2013 Eric Lasota
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
]]
local GetCPPType
local declTypeTranslations =
{
["class"] = "class",
["struct"] = "struct",
["enum"] = "struct",
["interface"] = "struct",
}
local declTypePredeclares =
{
["class"] = "RDX_DECLARE_COMPLEX_NATIVE_CLASS",
["struct"] = "RDX_DECLARE_COMPLEX_NATIVE_STRUCT",
}
local userPropertyTranslations =
{
["nativechangesduringload"] = "STUF_NativeChangesDuringLoad",
["nativesafetoserialize"] = "STUF_NativeSafeToSerialize",
}
local methodNameTranslations =
{
["#coerce"] = "Coerce",
["__neg"] = "Negate",
["__mul"] = "Multiply",
["__mod"] = "Modulo",
["__div"] = "Divide",
["__sub"] = "Subtract",
["__add"] = "Add",
["__eq"] = "Equal",
["__ne"] = "NotEqual",
["__lt"] = "Less",
["__le"] = "LessOrEqual",
["__gt"] = "Greater",
["__ge"] = "GreaterOrEqual",
["__index"] = "Index",
["__setindex"] = "SetIndex",
}
local cppTranslateReservedSet = set
{
"alignas", "alignof", "auto", "bool", "char", "compl", "constexpr", "const_cast", "decltype", "dynamic_cast",
"double", "dynamic_cast", "export", "extern", "float", "friend", "goto", "inline", "int", "long", "mutable",
"noexcept", "nullptr", "operator", "register", "reinterpret_cast", "short", "signed", "sizeof", "static_assert",
"static_cast", "template", "thread_local", "typeid", "typename", "union", "unsigned", "volatile", "wchar_t",
-- Annoying things from stdlib that cause unwanted behavior
"EOF",
-- Internally used names
"Enum",
}
setglobal("CPPUnreserve", function(sym)
if cppTranslateReservedSet[sym] then
return sym.."_"
end
return sym
end )
local enumPassThroughOperators = { "!=", "==", ">=", "<=", ">", "<" }
setglobal("AttribAssert", function(value, attrib)
if not value then
cerror(attrib.sourceNode, "MalformedAttributeTag")
end
end )
local function shorthash(str)
return string.sub(RDXC.Native.sha256(str), 1, 8)
end
local function computeguid(str)
return RDXC.Native.computeguid(str)
end
setglobal("ComputeSymbolGUID", function(sym)
local domain, objName = splitResName(sym)
return computeguid(domain).."_"..computeguid(objName)
end )
local CPPAttrib = function(obj, attrib)
return obj.attribTags and obj.attribTags.cpp and obj.attribTags.cpp[attrib]
end
setglobal("DetermineObjectName", function(cs, obj)
if obj.cpp == nil then
obj.cpp = { }
end
if obj.cpp.name ~= nil or (obj.type == "CNamespace" and obj.name == nil) then
return
end
obj.cpp.insideType = false
-- Determine the owner
local owner
local prefix = obj.type
if obj.type == "CStructuredType" then
owner = obj.namespace.owner
prefix = "C"
else
owner = obj.owner
if owner then
if owner.type == "CNamespace" then
prefix = "N"
end
else
prefix = "U"
end
end
if owner then
if owner.createdBy then
owner = owner.createdBy
end
DetermineObjectName(cs, owner)
if owner.cpp.insideType or
(owner.type == "CStructuredType" and (owner.declType == "struct" or owner.declType == "enum" or owner.declType == "class")) then
obj.cpp.insideType = true
end
end
local objName = obj.name
if obj.isFromTemplate or obj.isPrivateType then
objName = "Tp_"..shorthash(objName)
prefix = "T"..prefix
elseif obj.privateTypeName then
objName = "Pt_"..shorthash(obj.privateTypeName)
prefix = "P"..prefix
end
if CPPAttrib(obj, "name") then
AttribAssert(obj.attribTags.cpp.name[1], obj.attribTags.cpp.name)
obj.cpp.name = obj.attribTags.cpp.name[1].string
obj.cpp.classname = obj.cpp.name
assert(type(obj.cpp.name) == "string")
else
if owner ~= nil and owner.cpp.name then
if not owner.cpp.rnNamespace then
cerror(owner.attribTags.cpp.sourceNode, "SymbolInsideNamedCppObject")
end
obj.cpp.name = owner.cpp.name.."::"..objName
obj.cpp.classname = owner.cpp.rnNamespace.."::"..prefix..objName
obj.cpp.rnNamespace = owner.cpp.rnNamespace.."::N"..objName
else
if cppConfig.exportNamespace then
obj.cpp.name = "::"..cppConfig.exportNamespace.."::"..objName
else
obj.cpp.name = "::"..objName
end
obj.cpp.classname = "::"..objName
obj.cpp.rnNamespace = "::_RDX_CPPX::N"..objName
end
end
assert(string.sub(obj.cpp.name, 1, 2) == "::" or obj.cpp.name == "void", obj.cpp.name)
end )
setglobal("DetermineObjectCPPPath", function(cs, obj)
DetermineObjectName(cs, obj)
if not obj.cpp.pathEvaluated then
if CPPAttrib(obj, "header") then
obj.cpp.headerPath = obj.attribTags.cpp.header[1].string
obj.cpp.protoPath = obj.cpp.headerPath
if obj.attribTags.cpp.coreheader then
obj.cpp.coreHeader = true
end
elseif CPPAttrib(obj, "builtin") then
else
-- Compute path from name
local fullPath = ""
local current
assert(string.sub(obj.cpp.name, 1, 2) == "::", obj.cpp.name)
current = string.sub(obj.cpp.name, 3, #obj.cpp.name)
while true do
local prefix, suffix = string.match(current, "(.-)::(.+)")
assert(prefix ~= "", current)
if suffix == nil then
break
end
if not CPPAttrib(obj, "coreheader") then
RDXC.Native.mkdir(cppConfig.exportPath.."/"..fullPath..prefix)
end
fullPath = fullPath..prefix.."/"
current = suffix
end
obj.cpp.headerPath = fullPath..current..".hpp"
obj.cpp.protoPath = fullPath..current..".Proto.hpp"
obj.cpp.cppPath = fullPath..current..".cpp"
obj.cpp.pccmPath = fullPath..current..".PCCM.cpp"
end
obj.cpp.pathEvaluated = true
end
end )
local SplitPath = function(path)
local current = path
local decomposed = { }
while true do
local prefix, suffix = string.match(current, "(.-)/(.+)");
assert(prefix ~= "")
if suffix == nil then
break;
end
decomposed[#decomposed+1] = prefix
current = suffix
end
decomposed[#decomposed+1] = current
return decomposed
end
local RelativeHeaderPathOld = function(cs, sourceObj, targetObj)
local sourcePath = sourceObj
if type(sourcePath) == "table" then
sourcePath = sourceObj.cpp.headerPath
end
local targetPath = targetObj
if type(targetObj) == "table" then
DetermineObjectCPPPath(cs, targetObj)
targetPath = targetObj.cpp.headerPath
if targetObj.cpp.coreHeader then
targetPath = ""
end
end
local targetDecomposed = SplitPath(targetPath)
local sourceDecomposed = SplitPath(sourcePath)
local deepestMatch = 0
for i=1,#targetDecomposed do
if targetDecomposed[i] ~= sourceDecomposed[i] then
break
end
deepestMatch = i
end
local relativePath = ""
for i=1,(#sourceDecomposed - deepestMatch - 1) do
relativePath = relativePath.."../"
end
for i=deepestMatch+1,#targetDecomposed do
relativePath = relativePath..targetDecomposed[i].."/"
end
relativePath = string.sub(relativePath, 1, #relativePath-1) -- Clip final /
if type(targetObj) == "table" and targetObj.cpp.coreHeader then
relativePath = relativePath..cppConfig.rdxPath.."/"..targetObj.cpp.headerPath
end
return relativePath
end
local RelativeHeaderPath = function(cs, sourceObj, targetObj, needProto)
if type(targetObj) == "table" then
DetermineObjectCPPPath(cs, targetObj)
if needProto then
return assert(targetObj.cpp.protoPath)
else
return assert(targetObj.cpp.headerPath)
end
else
return targetObj
end
end
-- Adds a dependency that must be fully declared before this type is usable, such as a struct or a class extension
local AddHardDependency = function(cs, dep, obj)
if dep.softDepSet[obj] then
dep.softDepSet[obj] = nil
end
if dep.protoDepSet[obj] then
dep.protoDepSet[obj] = nil
end
dep.hardDepSet[obj] = true
end
-- Adds a dependency that might only be used for reference types. Hard dependencies always override soft dependencies
local function AddSoftDependency(cs, dep, obj)
if dep.hardDepSet[obj] then
return
end
if dep.protoDepSet[obj] then
return
end
if obj.type == "CArrayOfType" then
AddSoftDependency(cs, dep, obj.containedType)
else
dep.softDepSet[obj] = true
end
end
local function AddProtoDependency(cs, dep, obj)
if dep.hardDepSet[obj] then
return
end
if dep.protoDepSet[obj] then
dep.protoDepSet[obj] = nil
end
if obj.type == "CArrayOfType" then
AddSoftDependency(cs, dep, obj.containedType)
else
dep.protoDepSet[obj] = true
end
end
local AddSoftDependencyName = function(cs, dep, name, declType)
dep.softDepNameSet[name] = { declType = declType }
end
local ObjNoCode = function(obj)
return CPPAttrib(obj, "nocode")
end
local ResolveDependencies = function(cs, sourceObj, depSet)
-- Resolve hard dependency header paths
for dep in pairs(depSet.hardDepSet) do
if not ObjNoCode(dep) then
local headerPath = RelativeHeaderPath(cs, sourceObj, dep)
depSet.headerSet[headerPath] = true
end
end
depSet.hardDepSet = nil
-- Resolve soft dependency paths
for dep in pairs(depSet.softDepSet) do
DetermineObjectCPPPath(cs, dep)
if not ObjNoCode(dep) then
local isBuiltin = CPPAttrib(dep, "builtin")
if isBuiltin then
depSet.headerSet[RelativeHeaderPath(cs, sourceObj, dep)] = true
else
depSet.softDepNameSet[dep.cpp.classname] = { declType = dep.declType }
end
end
end
depSet.softDepSet = nil
-- Resolve proto paths
for dep in pairs(depSet.protoDepSet) do
DetermineObjectCPPPath(cs, dep)
if not ObjNoCode(dep) then
local headerPath = RelativeHeaderPath(cs, sourceObj, dep, true)
depSet.headerSet[headerPath] = true
end
end
depSet.protoDepSet = nil
end
GetCPPType = function(cs, dependencies, obj, useWeak)
if obj.type == "CStructuredType" then
if obj.declType == "struct" or obj.declType == "class" or obj.declType == "enum" or obj.declType == "interface" then
DetermineObjectName(cs, obj)
local symName = obj.cpp.classname
if obj.declType == "class" then
--if CPPAttrib(obj, "alwaysconst") then
-- symName = symName.." const"
--end
if useWeak then
symName = "rdxWeakRTRef("..symName..")"
else
symName = "rdxTracedRTRef("..symName..")"
end
elseif obj.declType == "interface" then
if useWeak then
symName = "rdxWeakIRef("..symName..")"
else
symName = "rdxTracedIRef("..symName..")"
end
end
return symName
else
assert(false)
end
elseif obj.type == "CArrayOfType" then
if dependencies then
AddSoftDependency(cs, dependencies, obj.containedType)
end
local arrayName = GetCPPType(cs, dependencies, obj.containedType)
--if obj.isConst then
-- arrayName = arrayName.." const"
--end
if useWeak then
arrayName = "rdxWeakArrayRTRef("..arrayName..")"
else
arrayName = "rdxTracedArrayRTRef("..arrayName..")"
end
return arrayName
elseif obj.type == "CDelegateType" then
return GetCPPType(cs, dependencies, cs.gst["Core.RDX.Method"], useWeak)
else
assert(false)
end
end
local TypeIsByRef = function(t)
return t.type == "CStructuredType" and t.declType == "struct" and not t.byVal
end
-- Builds C++ return value, parameter expectations, and static flag for a method
local GetCPPFunction = function(cs, dependencies, method)
local returnType = "void"
local returnTypeRefs = method.returnTypes.typeReferences
local numReturnTypes = #returnTypeRefs
local rvInline = false
AddSoftDependencyName(cs, dependencies, "::rdxSExportedCallEnvironment", "struct")
local paramList
local paramPass
if method.isNative then
paramList = "(rdxSExportedCallEnvironment &callEnv"
paramPass = "callEnv"
for rvi,rtRef in ipairs(returnTypeRefs) do
local rt = rtRef.refType
local cppType = GetCPPType(cs, dependencies, rt)
AddSoftDependency(cs, dependencies, rt)
if method.name.string ~= "#coerce" and numReturnTypes == 1 and not TypeIsByRef(rt) then
returnType = GetCPPType(cs, dependencies, rt, true)
else
rvInline = true
paramList = paramList..", "..cppType.." & r_"..rvi
if TypeIsByRef(rt) then
paramPass = paramPass..", *static_cast<"..cppType.." *>(rv"..rvi.."->Modify())"
else
paramPass = paramPass..", *rv"..rvi
end
end
end
for paramIdx,param in ipairs(method.actualParameterList.parameters) do
if paramIdx ~= method.thisParameterIndex then
local paramType = param.type.refType
local cppType = GetCPPType(cs, dependencies, paramType, true)
AddSoftDependency(cs, dependencies, paramType)
if TypeIsByRef(paramType) then
local constness = param.isConst and " const" or ""
paramPass = paramPass..", *static_cast<"..cppType..constness.." *>(p"..paramIdx.."->Modify())"
cppType = cppType..constness.." &"
else
if VTypeIsObjectReference(paramType) then
paramPass = paramPass..", p"..paramIdx.."->ToWeakRTRef()"
else
paramPass = paramPass..", *p"..paramIdx
end
end
paramList = paramList..", "..cppType.." p_"..param.name.string
end
end
paramList = paramList..")"
else
paramList = "(::rdxPCCMCallEnvironment &callEnv)"
paramPass = "callEnv"
end
return returnType, paramList, paramPass, (not method.thisParameterIndex), rvInline
end
local ExportTypeProto = function(cs, obj)
local f = io.open(cppConfig.exportPath.."/"..obj.cpp.protoPath, "w")
DetermineObjectName(cs, obj)
local headerTagHash = "__RDX_CPPX_PROTO_"..shorthash(obj.longName).."__"
local objectName = obj.cpp.classname
f:write("#ifndef "..headerTagHash.."\n")
f:write("#define "..headerTagHash.."\n\n")
if obj.declType == "class" then
DetermineObjectCPPPath(cs, obj)
DetermineObjectName(cs, obj.parentType)
local headerPath = RelativeHeaderPath(cs, obj, obj.parentType, true)
f:write("#include \""..headerPath.."\" // (ExportTypeProto)\n")
end
f:write("\n")
do
local ns, sym = string.match(objectName, "::(.+::)(.+)")
if sym == nil then
ns = ""
sym = objectName
end
local indentLevel = 0
-- Descend into the current symbol's namespace
local currentNamespace = ""
local indentLevel = 0
local subNS = ns
while subNS ~= "" do
local nextLevel
nextLevel, subNS = string.match(subNS, "(.-::)(.*)")
local namespaceName = string.sub(nextLevel, 1, #nextLevel - 2)
assert(namespaceName ~= "")
for i=1,indentLevel do
f:write("\t")
end
f:write("namespace "..namespaceName.."\n")
for i=1,indentLevel do
f:write("\t")
end
f:write("{\n")
indentLevel = indentLevel + 1
end
for i=1,indentLevel do
f:write("\t")
end
f:write(declTypeTranslations[obj.declType].." "..sym..";\n")
while indentLevel > 0 do
indentLevel = indentLevel - 1
for i=1,indentLevel do
f:write("\t")
end
f:write("}\n")
end
if obj.declType == "class" then
DetermineObjectName(cs, obj.parentType)
f:write("RDX_DECLARE_SUPER("..obj.cpp.classname..", "..obj.parentType.cpp.classname..");\n")
elseif obj.declType == "interface" then
f:write("RDX_DECLARE_SUPER("..obj.cpp.classname..", ::rdxSObjectInterfaceImplementation);\n")
end
end
f:write("\n#endif\n")
end
local ExportTypeHeader = function(cs, obj)
local headerTagHash = "__RDX_CPPX_HEADER_"..shorthash(obj.longName).."__"
local dependencies = { headerSet = { }, systemHeaderSet = { }, hardDepSet = { }, softDepSet = { }, protoDepSet = { }, softDepNameSet = { }, dependencyTree = { } }
local firstProperty = 1
if obj.parentType and not ObjNoCode(obj.parentType) then
AddHardDependency(cs, dependencies, obj.parentType)
firstProperty = #obj.parentType.properties + 1
end
do
local numInterfaces = #obj.interfaces
local numParentInterfaces = 0
if obj.parentType then
numParentInterfaces = #obj.parentType.interfaces
end
for i=numParentInterfaces+1,numInterfaces do
local ifc = obj.interfaces[i].interfaceType
AddHardDependency(cs, dependencies, ifc)
end
end
-- Resolve any property dependencies
for i=firstProperty,#obj.properties do
local prop = obj.properties[i]
local propType = prop.typeOf.refType
if propType.type == "CStructuredType" and (propType.declType == "struct" or propType.declType == "enum") then
AddHardDependency(cs, dependencies, propType)
else
AddProtoDependency(cs, dependencies, propType)
end
end
local childTypeDefs = { }
local childMethods = { }
-- Find child classes and methods
local symbols = obj.namespace.symbols
for sym,childObj in pairs(symbols) do
if childObj.type == "CStructuredType" and (childObj.declType == "class" or childObj.declType == "struct" or childObj.declType == "interface" or childObj.declType == "enum") and not childObj.isTemplate then
DetermineObjectName(cs, childObj)
AddSoftDependency(cs, dependencies, childObj)
childTypeDefs[#childTypeDefs+1] = { internalSymbol = CPPUnreserve(sym), typeName = childObj.cpp.classname, visibility = childObj.visibility }
elseif childObj.type == "CMethodGroup" then
for _,overload in ipairs(childObj.overloads) do
if overload.definedByType == obj then
local returnType, parameters, paramPass, isStatic, rvInline = GetCPPFunction(cs, dependencies, overload)
local methodSymbol = sym
if methodNameTranslations[methodSymbol] then
methodSymbol = methodNameTranslations[methodSymbol]
end
if overload.cpp == nil then
overload.cpp = { }
end
overload.cpp.marshalMethodInfo =
{
internalSymbol = CPPUnreserve(methodSymbol),
returnType = returnType,
parameters = parameters,
visibility = childObj.visibility,
isStatic = isStatic,
paramPass = paramPass,
rvInline = rvInline,
isConst = overload.isConst,
isNative = overload.isNative,
}
overload.cpp.rvInline = rvInline
childMethods[#childMethods+1] = overload.cpp.marshalMethodInfo
end
end
end
end
table.sort(childTypeDefs, function(a, b)
return a.internalSymbol < b.internalSymbol
end )
local childPropertyDefs = { }
-- Scan all properties
for i=firstProperty,#obj.properties do
local prop = obj.properties[i]
local propType = prop.typeOf.refType
local cppType = GetCPPType(cs, dependencies, propType)
childPropertyDefs[#childPropertyDefs+1] = { internalSymbol = CPPUnreserve(prop.name), typeName = cppType, visibility = prop.visibility }
end
obj.cpp.childPropertyDefs = childPropertyDefs
if CPPAttrib(obj, "hascustomtrace") then
obj.cpp.hasTypeProcessor = true
obj.cpp.hasCustomTrace = true
end
if CPPAttrib(obj, "hasfinalizer") then
obj.cpp.hasTypeProcessor = true
obj.cpp.hasFinalizer = true
end
if CPPAttrib(obj, "hasonload") then
obj.cpp.hasTypeProcessor = true
obj.cpp.hasOnLoad = true
end
if CPPAttrib(obj, "hasserializer") then
obj.cpp.hasSerializer = true
end
local rdxIncludePath = RelativeHeaderPath(cs, obj, "")..cppConfig.rdxPath
if obj.cpp.hasTypeProcessor then
dependencies.headerSet[rdxIncludePath.."/rdx_basictypes.hpp"] = true -- For ScanID
dependencies.headerSet[rdxIncludePath.."/rdx_gcslots.hpp"] = true -- For GCLink
AddSoftDependencyName(cs, dependencies, "::RDX::ObjectManagement::IObjectManager", "struct")
AddSoftDependencyName(cs, dependencies, "::RDX::ObjectManagement::ISerializer", "struct")
AddSoftDependencyName(cs, dependencies, "::RDX::OperationContext", "struct")
end
if obj.cpp.hasSerializer then
AddSoftDependencyName(cs, dependencies, "::RDX::OperationContext", "struct")
AddSoftDependencyName(cs, dependencies, "::RDX::ObjectManagement::IObjectManager", "struct")
AddSoftDependencyName(cs, dependencies, "::RDX::IO::ITextDeserializer", "struct")
AddSoftDependencyName(cs, dependencies, "::RDX::IO::IFileStream", "struct")
AddSoftDependencyName(cs, dependencies, "::RDX::ObjectManagement::IPackageHost", "struct")
AddSoftDependencyName(cs, dependencies, "::RDX::ObjectManagement::Package", "struct")
end
if CPPAttrib(obj, "softdependencies") then
local depTable = CPPAttrib(obj, "softdependencies")
for i=1,#depTable,2 do
local depName = depTable[i]
local depDeclType = depTable[i+1]
if depDeclType == nil then
cerror(obj.attribTags.cpp.sourceNode, "MalformedSoftDependencies")
end
AddSoftDependencyName(cs, dependencies, depName.string, depDeclType.string)
end
end
ResolveDependencies(cs, obj, dependencies)
local f = io.open(cppConfig.exportPath.."/"..obj.cpp.headerPath, "w")
f:write("#ifndef "..headerTagHash.."\n")
f:write("#define "..headerTagHash.."\n")
f:write("\n")
f:write("// Internal name: "..obj.prettyName.."\n")
f:write("\n")
f:write("#include \""..rdxIncludePath.."/rdx_pccm_api.hpp\"\n")
if obj.type == "CStructuredType" and obj.declType == "enum" then
dependencies.headerSet[rdxIncludePath.."/rdx_basictypes.hpp"] = true
end
if CPPAttrib(obj, "rdxheaders") then
for _,header in ipairs(CPPAttrib(obj, "rdxheaders")) do
dependencies.headerSet[rdxIncludePath.."/"..header.string] = true
end
end
if CPPAttrib(obj, "relativeheaders") then
for _,header in ipairs(CPPAttrib(obj, "relativeheaders")) do
dependencies.headerSet[header.string] = true
end
end
if CPPAttrib(obj, "systemheaders") then
for _,header in ipairs(CPPAttrib(obj, "systemheaders")) do
dependencies.systemHeaderSet[header.string] = true
end
end
-- Include the object's own proto
do
DetermineObjectCPPPath(cs, obj)
local selfProto = obj.cpp.protoPath
if not dependencies.headerSet[selfProto] then
f:write("#include \""..selfProto.."\"\n")
end
end
for headerPath in sortedpairs(dependencies.systemHeaderSet) do
f:write("#include <"..headerPath..">\n")
end
for headerPath in sortedpairs(dependencies.headerSet) do
f:write("#include \""..headerPath.."\" // (ExportTypeHeader HeaderSet)\n")
end
f:write("\n")
local indentLevel = 0
local currentNamespace = ""
local writeIndent = function()
for i=1,indentLevel do f:write("\t") end
end
local transitionNamespace = function(symbolPath)
assert(string.sub(symbolPath, 1, 2) == "::")
symbolPath = string.sub(symbolPath, 3, #symbolPath)
local ns, sym
ns, sym = string.match(symbolPath, "(.+::)(.+)")
if sym == nil then
ns = ""
sym = symbolPath
end
-- Drop back on namespaces
while string.sub(ns, 1, #currentNamespace) ~= currentNamespace do
indentLevel = indentLevel - 1
writeIndent()
f:write("}\n")
currentNamespace = string.match(currentNamespace, "(.+::).-::")
if currentNamespace == nil then
currentNamespace = ""
end
end
-- Descend into the current symbol's namespace
local subNS = string.sub(ns, #currentNamespace+1, #ns)
while currentNamespace ~= ns do
local nextLevel
nextLevel, subNS = string.match(subNS, "(.-::)(.*)")
writeIndent()
local namespaceName = string.sub(nextLevel, 1, #nextLevel - 2)
assert(namespaceName ~= "")
f:write("namespace "..namespaceName.."\n")
writeIndent()
f:write("{\n")
indentLevel = indentLevel + 1
currentNamespace = currentNamespace..nextLevel
end
return sym
end
-- Forward declare the plugin classes
transitionNamespace("::_RDX_CPPX::Plug")
writeIndent() f:write("struct PluginGlue;\n")
writeIndent() f:write("struct PCCMGlue;\n")
if obj.cpp.hasTypeProcessor then
writeIndent() f:write("struct PluginTypeProcessor_"..shorthash(obj.longName)..";\n")
end
if obj.cpp.hasSerializer then
writeIndent() f:write("struct PluginSerializer_"..shorthash(obj.longName)..";\n")
end
for symbolPath, dep in sortedpairs(dependencies.softDepNameSet) do
local sym = transitionNamespace(symbolPath)
writeIndent()
f:write(declTypeTranslations[dep.declType].." "..sym..";\n")
end
DetermineObjectCPPPath(cs, obj)
local classSymbol = transitionNamespace(obj.cpp.classname)
-- Export the main class def
writeIndent() f:write(declTypeTranslations[obj.declType].." "..classSymbol)
if obj.parentType and not ObjNoCode(obj.parentType) then
f:write(" : public "..obj.parentType.cpp.classname)
--elseif obj.type == "CStructuredType" and obj.declType == "enum" then
-- f:write(" : public RDX::EnumValue")
end
if obj.interfaces ~= nil then
local numInterfaces = #obj.interfaces
local numParentInterfaces = 0
if obj.parentType ~= nil then
numParentInterfaces = #obj.parentType.interfaces
end
for i=numParentInterfaces+1,numInterfaces do
local ifc = obj.interfaces[i].interfaceType
DetermineObjectName(cs, ifc)
f:write(", public "..ifc.cpp.classname)
end
end
if obj.type == "CStructuredType" and obj.declType == "interface" then
f:write(" : public ::rdxSObjectInterfaceImplementation")
end
if obj.type == "CStructuredType" and obj.declType == "enum" then
f:write(" : public ::rdxSRuntimeEnum")
end
f:write("\n")
writeIndent() f:write("{\n")
writeIndent() f:write("\tfriend struct ::_RDX_CPPX::PluginGlue;\n")
writeIndent() f:write("\tfriend struct ::_RDX_CPPX::PCCMGlue;\n")
if obj.cpp.hasTypeProcessor then
writeIndent() f:write("\tfriend struct ::_RDX_CPPX::PluginTypeProcessor_"..shorthash(obj.longName)..";\n")
end
if obj.cpp.hasSerializer then
writeIndent() f:write("\tfriend struct ::_RDX_CPPX::PluginSerializer_"..shorthash(obj.longName)..";\n")
end
if CPPAttrib(obj, "nativeproperties") then
writeIndent() f:write("\tpublic: struct NativeProperties\n")
writeIndent() f:write("\t{\n")
for _,nf in ipairs(CPPAttrib(obj, "nativeproperties")) do
writeIndent() f:write("\t\t"..nf.string..";\n")
end
writeIndent() f:write("\t} _native;\n\n")
obj.cpp.hasNativeFields = true
end
if CPPAttrib(obj, "nativemethods") then
for _,nf in ipairs(CPPAttrib(obj, "nativemethods")) do
writeIndent() f:write("\tprivate: "..nf.string..";\n")
end
end
if obj.cpp.hasCustomTrace then
writeIndent() f:write("\tprivate: void MarkDependencies(::RDX::ObjectManagement::IObjectManager *objm, bool markNative, ::RDX::ObjectManagement::ISerializer *ser, ::RDX::ObjectManagement::ScanID scanID, ::RDX::ObjectManagement::GCLink gcl) const;\n")
end
if obj.cpp.hasFinalizer then
writeIndent() f:write("\tprivate: void Finalize(::RDX::ObjectManagement::IObjectManager *objm);\n")
end
if obj.cpp.hasOnLoad then
writeIndent() f:write("\tprivate: bool OnLoad(::RDX::OperationContext *ctx, ::RDX::ObjectManagement::IObjectManager *objm);\n")
end
if obj.cpp.hasSerializer then
writeIndent() f:write("\tprivate: void DeserializeTextInstance(::RDX::OperationContext *ctx, ::RDX::ObjectManagement::IObjectManager *objm, ::RDX::IO::ITextDeserializer *td, ::RDX::ObjectManagement::IPackageHost *host, ::RDX::ObjectManagement::Package *pkg);\n")
writeIndent() f:write("\tprivate: void DeserializeBinaryInstance(::RDX::OperationContext *ctx, ::RDX::ObjectManagement::IObjectManager *objm, ::RDX::IO::IFileStream *fs, ::RDX::ObjectManagement::IPackageHost *host, ::RDX::ObjectManagement::Package *pkg);\n")
writeIndent() f:write("\tprivate: void SerializeBinaryInstance(::RDX::ObjectManagement::IObjectManager *objm, ::RDX::IO::IFileStream *fs) const;\n")
writeIndent() f:write("\tprivate: void SerializeTextInstance(::RDX::ObjectManagement::IObjectManager *objm, ::RDX::IO::IFileStream *fs) const;\n")
end
-- Write typedefs
for _,td in ipairs(childTypeDefs) do
writeIndent() f:write("\t"..td.visibility..": typedef "..td.typeName.." "..td.internalSymbol..";\n")
end
-- Write properties
for _,p in ipairs(childPropertyDefs) do
local sym = p.internalSymbol
writeIndent() f:write("\t"..p.visibility..": "..p.typeName.." "..p.internalSymbol..";\n")
end
-- Write methods
for _,m in ipairs(childMethods) do
local constness = (m.isConst and " const" or "")
if m.isNative then
writeIndent() f:write("\t"..m.visibility..": "..(m.isStatic and "static ")..m.returnType.." "..m.internalSymbol..m.parameters..constness..";\n")
end
end
-- Write enumerants
if obj.enumerants ~= nil and #obj.enumerants > 0 then
writeIndent() f:write("public:\n")
--for _,pto in ipairs(enumPassThroughOperators) do
-- writeIndent() f:write("\tinline bool operator "..pto.."(const "..classSymbol.." &rs) const { return (this->m_value "..pto.." rs.m_value); }\n")
--end
writeIndent() f:write("\tenum Enum\n")
writeIndent() f:write("\t{\n")
for _,e in ipairs(obj.enumerants) do
writeIndent() f:write("\t\t"..CPPUnreserve(e.name).." = "..e.value..",\n")
end
writeIndent() f:write("\t};\n")
writeIndent() f:write("\tinline "..classSymbol.." () { }\n")
writeIndent() f:write("\tinline "..classSymbol.." (const Enum &rs) : rdxSRuntimeEnum(static_cast<RDX_ENUM_TYPE>(rs)) { }\n")
writeIndent() f:write("\tinline "..classSymbol.." (const "..classSymbol.." &rs) : rdxSRuntimeEnum(rs) { }\n")
--writeIndent() f:write("\tinline "..classSymbol.." (const RDX_ENUM_TYPE &rs) { this->m_value = rs; }\n")
writeIndent() f:write("\tinline "..classSymbol.." & operator =(const Enum &rs) { this->m_value = static_cast<RDX_ENUM_TYPE>(rs); return *this; }\n")
writeIndent() f:write("\tinline operator Enum () const { return static_cast<Enum>(this->m_value); }\n")
writeIndent() f:write("\tinline "..classSymbol.." &operator =(const "..classSymbol.." &rs) { this->m_value = rs.m_value; return *this; }\n")
local enumCompareOperators = { "==", "!=", ">", "<", ">=", "<=" }
for _,op in ipairs(enumCompareOperators) do
writeIndent() f:write("\tinline bool operator "..op.."(const "..classSymbol.." &rs) { return this->m_value "..op.." rs.m_value; }\n")
writeIndent() f:write("\tinline bool operator "..op.."(const Enum &rs) { return this->m_value "..op.." static_cast<RDX_ENUM_TYPE>(rs); }\n")
end
writeIndent() f:write("private:\n")
writeIndent() f:write("\tinline "..classSymbol.." (const rdxSRuntimeEnum &rs) { this->m_value = rs.Value(); }\n")
writeIndent() f:write("\tinline "..classSymbol.." &operator =(const rdxSRuntimeEnum &rs) { this->m_value = rs.Value(); return *this; }\n")
end
if obj.cpp.hasNativeFields then
f:write("\n")
writeIndent() f:write("\tRDX_DECLARE_PROPERTY_LOOKUP;\n")
writeIndent() f:write("\t"..classSymbol.."(rdxIObjectManager *objm, rdxGCInfo *info)\n")
if obj.parentType and not ObjNoCode(obj.parentType) then
writeIndent() f:write("\t\t: "..obj.parentType.cpp.classname.."(objm, info)\n")
end
writeIndent() f:write("\t{\n")
writeIndent() f:write("\t}\n")
end
writeIndent() f:write("};\n")
-- Write the base typedef
if not obj.cpp.insideType then
local sym = transitionNamespace(obj.cpp.name)
writeIndent() f:write("typedef "..obj.cpp.classname.." "..sym..";\n")
end
transitionNamespace("::")
if obj.cpp.hasNativeFields then
if obj.declType == "class" then
f:write("RDX_DECLARE_COMPLEX_NATIVE_CLASS("..obj.cpp.classname..");\n")
elseif obj.declType == "struct" then
f:write("RDX_DECLARE_COMPLEX_NATIVE_STRUCT("..obj.cpp.classname..");\n")
end
end
f:write("#endif\n")
f:close()
end
local ExportObject = function(cs, obj)
if obj.cpp and obj.cpp.exported == true then
return
end
if obj.type ~= "CStructuredType" or obj.isTemplate then
return
end
obj.cpp = { }
local cppTags = (obj.attribTags and obj.attribTags.cpp) or { }
if not cppTags.header and not cppTags.nocode then
-- Determine header path
DetermineObjectName(cs, obj)
DetermineObjectCPPPath(cs, obj)
if obj.type == "CStructuredType" then
ExportTypeProto(cs, obj)
ExportTypeHeader(cs, obj)
end
end
obj.cpp.exported = true
end
setglobal("CPPExportSymbol", function(cs, sym)
if not cppConfig then
return
end
local obj = cs.gst[sym]
if obj == nil then
return
end
ExportObject(cs, obj)
end )
setglobal("BinObjectsByGUID", function(objectList)
local domainBins = { }
for _,obj in ipairs(objectList) do
local domain, objName = splitResName(obj.longName)
local domainGUID = computeguid(domain)
local objGUID = computeguid(objName)
local bin = domainBins[domainGUID]
if bin == nil then
bin = { }
domainBins[domainGUID] = bin
end
bin[objGUID] = obj
end
return domainBins
end )
setglobal("CPPExportPlugin", function(cs, includedSymbols)
local callbackParams = "(rdxSOperationContext *ctx, rdxIObjectManager *objm, rdxWeakHdl(rdxCMethod) m, rdxWeakHdl(rdxCRuntimeThread) thread, void *prv)"
if not cppConfig then
return
end
local f = io.open(cppConfig.exportPath.."/"..cppConfig.pluginPath..".cpp", "wb")
-- Write standard includes
local rdxIncludePath = RelativeHeaderPath(cs, cppConfig.pluginPath, "")..cppConfig.rdxPath
local criticalHeaders = {
"rdx_lut.hpp", "rdx_basictypes.hpp", "rdx_marshal.hpp", "rdx_programmability.hpp"
}
local criticalHeadersSet = { }
f:write("#include \"rdx_plugin_api.hpp\"\n")
for _,ch in ipairs(criticalHeaders) do
local fullPath = rdxIncludePath.."/"..ch
f:write("#include \""..fullPath.."\" // (CPPExportPlugin CriticalHeader)\n")
criticalHeadersSet[fullPath] = true
end
local importedHeaders = { }
local userPropObjects = { }
local marshalMethods = { }
local serializerObjects = { }
local typeProcessorObjects = { }
local marshalNTIs = { }
-- Write all dependencies
for sym in sortedpairs(includedSymbols) do
local obj = cs.gst[sym]
if obj ~= nil and obj.cpp then
if obj.cpp.headerPath and (obj.type ~= "CStructuredType" or obj.declType ~= "interface") then
importedHeaders[RelativeHeaderPath(cs, cppConfig.pluginPath, obj)] = true
end
if obj.cpp.hasSerializer then
serializerObjects[#serializerObjects+1] = obj
end
if obj.cpp.hasTypeProcessor then
typeProcessorObjects[#typeProcessorObjects+1] = obj
end
local hasUserProps = false
if obj.cpp.hasNativeFields then
hasUserProps = true
end
for k in pairs(userPropertyTranslations) do
if CPPAttrib(obj, k) then
hasUserProps = true
end
end
if hasUserProps or obj.cpp.hasSerializer or obj.cpp.hasTypeProcessor then
userPropObjects[#userPropObjects+1] = obj
marshalNTIs[#marshalNTIs+1] = obj
end
if obj.cpp.marshalMethodInfo and obj.isNative then
marshalMethods[#marshalMethods+1] = obj
if obj.thisParameterIndex then
local pt = obj.actualParameterList.parameters[obj.thisParameterIndex].type.refType
end
end
end
end
for h in sortedpairs(importedHeaders) do
if not criticalHeadersSet[h] then
f:write("#include \""..h.."\"\n")
end
end
f:write("\n")
-- Write marshal functions
print("Number of marshalMethods: "..#marshalMethods)
for msNum,method in ipairs(marshalMethods) do
if method.isNative then
local domain, objName = splitResName(method.longName)
local domainGUID = computeguid(domain)
local objGUID = computeguid(objName)
f:write("template<>\n")
f:write("int ::_RDX_CPPX::PluginGlue::CallMethod<0x"..domainGUID.."ULL, 0x"..objGUID.."ULL>"..callbackParams.."\n")
f:write("{\n")
local returnTypeRefs = method.returnTypes.typeReferences
local numReturnTypes = #returnTypeRefs
local hasReturnValues = (numReturnTypes > 0)
local hasParameters = (#method.actualParameterList.parameters > 0)
if numReturnTypes > 0 then
for rvi=#returnTypeRefs,1,-1 do
local rt = returnTypeRefs[rvi].refType
if TypeIsByRef(rt) then
f:write("\trdxWeakTypelessOffsetRTRef *rv"..rvi..";\n")
else
f:write("\t"..GetCPPType(cs, nil, rt).." *rv"..rvi..";\n")
end
if rvi == #returnTypeRefs then
f:write("\trdxPluginUtils::SetInitialRV(rv"..rvi..", prv);\n")
else
f:write("\trdxPluginUtils::LinkMarshalRV(rv"..rvi..", rv"..(rvi + 1)..");\n")
end
end
end
if hasParameters then
local params = method.actualParameterList.parameters
for paramIdx=1,#params do
local param = params[paramIdx]
local paramType = param.type.refType
local cppType = GetCPPType(cs, nil, paramType)
local constness = param.isConst and " const" or ""
if TypeIsByRef(paramType) then
f:write("\trdxWeakTypelessOffsetRTRef *p"..paramIdx..";\n")
else
f:write("\t"..GetCPPType(cs, nil, paramType).." *p"..paramIdx..";\n")
end
f:write("\trdxPluginUtils::LinkMarshalParam(p"..paramIdx..", ")
if paramIdx == 1 then
f:write("prv")
else
f:write("p"..(paramIdx - 1))
end
f:write(");\n")
end
end
f:write("\trdxSExportedCallEnvironment callEnv;\n")
f:write("\tcallEnv.ctx = ctx;\n")
f:write("\tcallEnv.thread = thread.Modify();\n")
f:write("\tcallEnv.objm = objm;\n")
f:write("\tcallEnv.status = rdxRS_Active;\n")
local marshalInfo = method.cpp.marshalMethodInfo
-- Emit the actual call
local returnsRef = false
f:write("\t")
if hasReturnValues and not marshalInfo.rvInline then
local rt = method.returnTypes.typeReferences[1].refType
if TypeIsByRef(rt) then
f:write("*static_cast<"..GetCPPType(cs, nil, rt).." *>(rv1->Modify()) = ")
else
if VTypeIsObjectReference(rt) then
returnsRef = true
end
f:write("*rv1 = ")
end
end
if method.thisParameterIndex then
local pt = method.actualParameterList.parameters[method.thisParameterIndex].type.refType
if TypeIsByRef(pt) then
local constness = method.isConst and " const" or ""
f:write("static_cast<"..GetCPPType(cs, nil, pt)..constness.." *>(p"..method.thisParameterIndex.."->Modify())->")
else
local isObjRef = VTypeIsObjectReference(pt)
if isObjRef then
f:write("(*")
end
f:write("p"..method.thisParameterIndex)
if isObjRef then
f:write(")")
end
f:write("->")
end
else
f:write(method.definedByType.cpp.classname.."::")
end
f:write(marshalInfo.internalSymbol.."("..marshalInfo.paramPass)
if returnsRef then
f:write(".ToWeakRTRef()")
end
f:write(");\n")
f:write("\treturn callEnv.status;\n")
f:write("}\n\n")
end
end
for idx,obj in ipairs(typeProcessorObjects) do
local sh = shorthash(obj.longName)
f:write("struct ::_RDX_CPPX::PluginTypeProcessor_"..sh.." : public RDX::ObjectManagement::ITypeProcessor\n")
f:write("{\n")
f:write("\tvoid MarkDependencies(RDX::ObjectManagement::IObjectManager *objm, void *obj, const RDX::Programmability::StructuredType *st, bool markNative, RDX::ObjectManagement::ISerializer *ser, RDX::ObjectManagement::ScanID scanID, RDX::ObjectManagement::GCLink gcl) const\n")
f:write("\t{\n")
if obj.cpp.hasCustomTrace then
f:write("\t\tstatic_cast<const "..obj.cpp.classname.." *>(obj)->MarkDependencies(objm, markNative, ser, scanID, gcl);\n")
end
f:write("\t}\n")
f:write("\tvoid Finalize(void *obj, RDX::ObjectManagement::IObjectManager *objm) const\n")
f:write("\t{\n")
if obj.cpp.hasFinalizer then
f:write("\t\tstatic_cast<"..obj.cpp.classname.." *>(obj)->Finalize(objm);\n")
end
f:write("\t}\n")
f:write("\tbool OnLoad(RDX::OperationContext *ctx, void *obj, RDX::ObjectManagement::IObjectManager *objm) const\n")
f:write("\t{\n")
if obj.cpp.hasOnLoad then
f:write("\t\treturn static_cast<"..obj.cpp.classname.." *>(obj)->OnLoad(ctx, objm);\n")
else
f:write("\t\treturn true;\n")
end
f:write("\t}\n")
f:write("};\n")
f:write("static ::_RDX_CPPX::PluginTypeProcessor_"..sh.." s_typeProcessor_"..sh..";\n\n")
end
for idx,obj in ipairs(serializerObjects) do
local sh = shorthash(obj.longName)
f:write("struct ::_RDX_CPPX::PluginSerializer_"..sh.." : public RDX::ObjectManagement::ITypeSerializer\n")
f:write("{\n")
f:write("\tvirtual void DeserializeTextInstance(RDX::OperationContext *ctx, RDX::ObjectManagement::IObjectManager *objm, void *instance, RDX::IO::ITextDeserializer *td, RDX::ObjectManagement::IPackageHost *host, RDX::ObjectManagement::Package *pkg) const\n")
f:write("\t{\n")
f:write("\t\tstatic_cast<"..obj.cpp.classname.." *>(instance)->DeserializeTextInstance(ctx, objm, td, host, pkg);\n")
f:write("\t}\n")
f:write("\tvirtual void DeserializeBinaryInstance(RDX::OperationContext *ctx, RDX::ObjectManagement::IObjectManager *objm, void *instance, RDX::IO::IFileStream *fs, RDX::ObjectManagement::IPackageHost *host, RDX::ObjectManagement::Package *pkg) const\n")
f:write("\t{\n")
f:write("\t\tstatic_cast<"..obj.cpp.classname.." *>(instance)->DeserializeBinaryInstance(ctx, objm, fs, host, pkg);\n")
f:write("\t}\n")
f:write("\tvirtual void SerializeBinaryInstance(RDX::ObjectManagement::IObjectManager *objm, const void *obj, RDX::IO::IFileStream *fs) const\n")
f:write("\t{\n")
f:write("\t\tstatic_cast<const "..obj.cpp.classname.." *>(obj)->SerializeBinaryInstance(objm, fs);\n")
f:write("\t}\n")
f:write("\tvirtual void SerializeTextInstance(RDX::ObjectManagement::IObjectManager *objm, const void *obj, RDX::IO::IFileStream *fs) const\n")
f:write("\t{\n")
f:write("\t\tstatic_cast<const "..obj.cpp.classname.." *>(obj)->SerializeTextInstance(objm, fs);\n")
f:write("\t}\n")
f:write("};\n")
f:write("static ::_RDX_CPPX::PluginSerializer_"..sh.." s_serializer_"..sh..";\n\n")
end
if #userPropObjects > 0 and false then
f:write("static ::RDX::StaticLookupTable<::RDX::StaticLookupStringKey<char, ::RDX::Char>, ::RDX::Programmability::StructuredType::NativeProperties::UserProperties>::Entry s_nativeFieldLookups[] =\n")
f:write("{\n")
for _,obj in ipairs(userPropObjects) do
f:write("\t{ RDX_STATIC_STRING(\""..obj.longName.."\"), { ")
if obj.cpp.hasTypeProcessor then
f:write("&::s_typeProcessor_"..shorthash(obj.longName))
else
f:write("NULL")
end
if obj.cpp.hasSerializer then
f:write(", &::s_serializer_"..shorthash(obj.longName))
else
f:write(", NULL")
end
if obj.cpp.hasNativeFields then
f:write(", sizeof("..obj.cpp.classname.."::NativeProperties), RDX_ALIGNOF("..obj.cpp.classname.."::NativeProperties)")
else
f:write(", 0, 1")
end
-- Write flags
f:write(", 0")
for upName,upTranslate in pairs(userPropertyTranslations) do
if CPPAttrib(obj, upName) then
f:write(" | ::RDX::Programmability::StructuredType::NativeProperties::UserProperties::UserFlags::"..upTranslate)
end
end
f:write(" } },\n")
end
f:write("};\n")
f:write("static ::RDX::StaticLookupTable<::RDX::StaticLookupStringKey<char, ::RDX::Char>, ::RDX::Programmability::StructuredType::NativeProperties::UserProperties> s_nativeFieldLUT(::s_nativeFieldLookups, sizeof(::s_nativeFieldLookups)/sizeof(::s_nativeFieldLookups[0]));\n")
end
if #marshalMethods > 0 then
local domainBins = BinObjectsByGUID(marshalMethods)
for domainGUID,objects in sortedpairs(domainBins) do
f:write("static rdxSPluginObjectFunctionLookup s_funcLookup_"..domainGUID.."[] =\n")
f:write("{\n")
for objectGUID,obj in sortedpairs(objects) do
f:write("\t{ 0x"..objectGUID.."ULL, ::_RDX_CPPX::PluginGlue::CallMethod<0x"..domainGUID.."ULL, 0x"..objectGUID.."ULL> },\n")
end
f:write("};\n")
f:write("\n")
end
f:write("static rdxSPluginDomainFunctionLookup s_domainFuncLookup[] =\n")
f:write("{\n")
for domainGUID in sortedpairs(domainBins) do
f:write("\t{ 0x"..domainGUID.."ULL, sizeof(s_funcLookup_"..domainGUID..") / sizeof(s_funcLookup_"..domainGUID.."[0]), s_funcLookup_"..domainGUID.." },\n")
end
f:write("\t{ 0, 0, RDX_CNULL }\n")
f:write("};\n")
f:write("\n")
end
if #marshalNTIs > 0 then
local domainBins = BinObjectsByGUID(marshalNTIs)
for domainGUID,objects in sortedpairs(domainBins) do
f:write("static rdxSPluginObjectNTILookup s_ntiLookup_"..domainGUID.."[] =\n")
f:write("{\n")
for objectGUID,obj in sortedpairs(objects) do
local cppType = obj.cpp.classname
f:write("\t{ 0x"..objectGUID.."ULL, ")
f:write("rdxSAutoTypeInfo<"..cppType..">::TypeInfoInterface(), ")
f:write(cppType.."::GetPropertyOffset },\n")
end
f:write("};\n")
f:write("\n")
end
f:write("static rdxSPluginDomainNTILookup s_domainNTILookup[] =\n")
f:write("{\n")
for domainGUID in sortedpairs(domainBins) do
f:write("\t{ 0x"..domainGUID.."ULL, sizeof(s_ntiLookup_"..domainGUID..") / sizeof(s_ntiLookup_"..domainGUID.."[0]), s_ntiLookup_"..domainGUID.." },\n")
end
f:write("\t{ 0, 0, RDX_CNULL }\n")
f:write("};\n")
f:write("\n")
for _,obj in ipairs(marshalNTIs) do
if obj.declType == "struct" then
f:write("RDX_IMPLEMENT_COMPLEX_NATIVE_STRUCT("..obj.cpp.classname..", (rdxETIF_NoFlags));\n")
elseif obj.declType == "class" then
f:write("RDX_IMPLEMENT_COMPLEX_NATIVE_CLASS("..obj.cpp.classname..", (rdxETIF_NoFlags));\n")
end
if obj.declType == "struct" or obj.declType == "class" then
f:write("RDX_BEGIN_PROPERTY_LOOKUP_STRUCT("..obj.cpp.classname..")\n")
for _,cpd in ipairs(obj.cpp.childPropertyDefs) do
f:write("\tRDX_DEFINE_LOOKUP_PROPERTY("..cpd.internalSymbol..")\n")
end
f:write("RDX_END_PROPERTY_LOOKUP\n\n")
end
end
end
-- Export the plugin structure
if #userPropObjects > 0 and false then
f:write("static void s_SetTypeProperties(rdxIObjectManager *objm, rdxCStructuredType *st) const\n")
f:write("{\n")
f:write("\tconst rdxCString *str = ::RDX::ObjectManagement::GCInfo::From(st)->gstSymbol;\n")
f:write("\tif(str == NULL)\n")
f:write("\t\treturn;\n")
f:write("\t::RDX::StaticLookupStringKey<char, ::RDX::Char> strKey(str->AsChars(), str->Length());\n")
f:write("\tconst ::RDX::Programmability::StructuredType::NativeProperties::UserProperties *nfLookup = ::s_nativeFieldLUT.Lookup(strKey);\n")
f:write("\tif(nfLookup != NULL)\n")
f:write("\t\tst->_native.user = *nfLookup;\n")
f:write("}\n")
f:write("\n")
end
f:write("static rdxSPluginExport s_plugin =\n")
f:write("{\n")
if #marshalMethods > 0 then
f:write("\ts_domainFuncLookup,\n")
else
f:write("\tRDX_CNULL,\n")
end
if #marshalNTIs > 0 then
f:write("\ts_domainNTILookup,\n")
else
f:write("\tRDX_CNULL,\n")
end
f:write("};\n")
f:write("\n")
f:write("const rdxSPluginExport *"..cppConfig.pluginName.."()\n")
f:write("{\n")
f:write("\treturn &::s_plugin;\n")
f:write("}\n")
-- Write PCCM
local methodExportBuilder = { }
print("Marshal methods")
local guidToSymbol = { }
for sym,obj in pairs(cs.gst) do
guidToSymbol[ComputeSymbolGUID(sym)] = sym
end
f:close()
if exportPCCM then
local pccmSymbols = { }
for sym in sortedpairs(includedSymbols) do
local obj = cs.gst[sym]
if obj ~= nil and obj.type == "CMethod" and (not obj.isNative) and (not obj.isAbstract) then
CompilePCCM(cs, obj, guidToSymbol)
local domain, objName = splitResName(obj.longName)
domain = computeguid(domain)
objName = computeguid(objName)
if pccmSymbols[domain] == nil then
pccmSymbols[domain] = { }
end
pccmSymbols[domain][objName] = true
end
end
local glueFilePath = cppConfig.exportPath.."/"..cppConfig.pccmGluePath..".cpp"
local glueF = io.open(glueFilePath, "wb")
glueF:write("#include <string.h>\n")
glueF:write("#include <stdlib.h>\n")
glueF:write("#include \"rdx_pccm_api.hpp\"\n")
glueF:write("\n")
--[[
glueF:write("extern \"C\" RDX_DLLEXPORT rdxPCCMCallback "..cppConfig.pccmGlueName.."(rdxLargeUInt index)\n")
glueF:write("{\n")
glueF:write("\trdxUInt64 domainU64;\n")
glueF:write("\trdxUInt64 objectU64;\n")
for i=1,8 do
local ci = i - 1
glueF:write("\tdomainU64 |= static_cast<rdxUInt64>(guid->m_domain.m_bytes["..ci.."]) << "..((7 - ci) * 8)..";\n")
end
for i=1,8 do
local ci = i - 1
glueF:write("\tobjectU64 |= static_cast<rdxUInt64>(guid->m_bytes["..ci.."]) << "..((7 - ci) * 8)..";\n")
end
glueF:write("\tswitch(domainU64)\n")
glueF:write("\t{\n")
for domainGUID,objects in sortedpairs(pccmSymbols) do
glueF:write("\tcase 0x"..domainGUID.."ULL:\n")
glueF:write("\t\t{\n")
glueF:write("\t\t\tswitch(objectU64)\n")
glueF:write("\t\t\t{\n")
for objectGUID in sortedpairs(objects) do
glueF:write("\t\t\tcase 0x"..objectGUID.."ULL:\n")
glueF:write("\t\t\t\treturn _RDX_CPPX::PCCMGlue::Call<0x"..domainGUID.."ULL, 0x"..objectGUID.."ULL>;\n")
end
glueF:write("\t\t\t};\n")
glueF:write("\t\t}\n")
glueF:write("\t\tbreak;\n")
end
glueF:write("\t};\n")
glueF:write("\treturn RDX_CNULL;\n")
glueF:write("}\n")
]]--
for domainGUID,objects in sortedpairs(pccmSymbols) do
glueF:write("static const rdxSPCCMObjectIndex domainObj_"..domainGUID.."[] =\n")
glueF:write("{\n")
for objectGUID in sortedpairs(objects) do
glueF:write("\t{ 0x"..objectGUID.."ULL, _RDX_CPPX::PCCMGlue::Call<0x"..domainGUID.."ULL, 0x"..objectGUID.."ULL> },\n")
end
glueF:write("};\n")
glueF:write("\n")
end
glueF:write("static const rdxSPCCMDomainIndex exportedCallbacks[] =\n")
glueF:write("{\n")
for domainGUID,objects in sortedpairs(pccmSymbols) do
local domainObjStr = "domainObj_"..domainGUID
glueF:write("\t{ 0x"..domainGUID.."ULL, sizeof("..domainObjStr..") / sizeof("..domainObjStr.."[0]), "..domainObjStr.." },\n")
end
glueF:write("\t{ 0, RDX_CNULL }\n")
glueF:write("};\n")
glueF:write("\n")
glueF:write("const rdxSPCCMDomainIndex *"..cppConfig.pccmGlueName.."()\n")
glueF:write("{\n")
glueF:write("\treturn exportedCallbacks;\n")
glueF:write("}\n")
glueF:close()
do
local clusterSize = cppConfig.clusterSize
local clusterNum = 0
local clusterLoad = 0
local clusterF
for domainGUID,objects in sortedpairs(pccmSymbols) do
for objectGUID in sortedpairs(objects) do
if clusterLoad == cppConfig.clusterSize then
clusterLoad = 0
end
if clusterLoad == 0 then
if clusterF ~= nil then
clusterF:close()
end
clusterF = io.open(cppConfig.exportPath.."/"..cppConfig.clusterPath.."_"..clusterNum..".cpp", "wb")
clusterNum = clusterNum + 1
end
clusterLoad = clusterLoad + 1
clusterF:write("#include \"RDXPCCM/method_"..domainGUID.."_"..objectGUID..".cpp\"\n")
end
end
if clusterF ~= nil then
clusterF:close()
end
end
end
end )
|
--[[
Code Author: kaasis/rivor2
Contact Info: http://steamcommunity.com/id/rivor2
]]--
--local prefix = "#DF0101[MTAZ] #999976MISSION:#BBBB99"; -- chat prefix (can be any, doesn't matter much)
local minimum_players = 1; -- how much players needed to start mission (def: 5 players)
local mission_interval = 60000*60; -- how often missions will spawn (def: 1 hour)
local mission_active_interval = 60000*30; -- how long active mission lasts (def: 15 minutes)
local missions = {
[1] = { --[[ captured supply box mission ]]
-- example: {x,y,z}
{14.0390625, 835.4677734375, 36.196266174316},
{-2053.3740234375, -189.943359375, 35.3203125},
{-1874.001953125, -2092.6494140625, 58.542930603027},
{1263.7265625, -1819.734375, 13.392370223999},
{2417.744140625, 166.0654296875, 25.178684234619},
{2227.658203125, 2660.3681640625, 10.8203125},
{40.507,2005.586,17.640},
{1524.064,1380.934,10.870},
{1028.129,-342.700,73.992},
{1374.908,-2002.174,46.713},
{-1300.584,-2198.182,22.029},
{-2305.450,-1641.969,483.697},
},
[2] = { --[[ captured helicopter mission ]]
-- example: {id,slots,tires,engine,tankparts,fuel,x,y,z,rx,ry,rz}
{487,20,0,1,1,1,1,60,12.896484375, 1536.0400390625, 12.75,0,0,0},
{487,20,0,1,1,1,1,60,-2090.185546875, 213.8671875, 35.138595581055,0,0,0},
{487,20,0,1,1,1,1,60,-1244.8720703125, -427.6787109375, 14.14396572113,0,0,0},
{487,20,0,1,1,1,1,60,846.4970703125, -1102.9208984375, 24.303991317749,0,0,0},
{487,20,0,1,1,1,1,60,2792.666015625, -2543.6337890625, 13.627556800842,0,0,0},
},
-- [[ hero supply box mission (only shoots bandits and survivors, heros can just pass peds) ]]
}
local items = {
{"toolbelt7",10},
{"toolbelt5",2},
{"weapon21",10},
{"weapon23",7},
{"weapon25",7},
{"weapon7",6},
{"weapon20",5.5},
{"weapon24",4},
{"weapon22",3},
{"fooditem9",2},
{"fooditem7",2},
{"item10",2},
{"item5",2},
{"item11",2},
{"item12",2},
{"fooditem6",1},
{"medicine6",4},
{"fooditem8",2},
{"item6",3},
{"weapon16",4},
{"weapon15",4},
{"weapon18",6},
{"toolbelt3",4},
{"medicine4",3},
{"item2",1},
{"backpack3",4},
{"toolbelt7",1.5},
{"medicine8",4},
{"clothing2",4.5},
{"clothing3",3},
{"toolbelt2",3},
{"toolbelt1",7},
{"toolbelt4",3},
{"vehiclepart1",2},
{"vehiclepart2",2},
{"vehiclepart3",2},
{"vehiclepart4",2},
{"vehiclepart5",2},
{"item3",4.5},
{"clothing1",0.5},
{"clothing7",2},
{"clothing8",1},
{"toolbelt6",3},
{"backpack4",5},
{"backpack1",2},
{"backpack5",2},
{"weapon107",0.5},
{"weapon4",1},
{"medicine3",5},
{"weapon9",2},
{"weapon8",3},
{"weapon17",5},
};
function outputAnnouncement(text)
--outputChatBox(prefix.." "..text,root,0,0,0,true)
triggerClientEvent(root,"notify",root);
end
function destroy_object(object)
local col = getElementData(object, "parent");
if col then destroyElement(col); end
if object then destroyElement(object); end
end
function math.percentChance(percent, repeatTime)
local players = #getElementsByType("player");
if (players >= 20) then players = players-15; end
local hits = 0;
for i = 1, repeatTime do
local number = math.random(0, 200)/2
if (number <= percent*players) then hits = hits + 1; end
end
return hits;
end
function supplybox_mission(data)
local x,y,z = unpack(data)
local mapBlip = createBlip(x,y,z,56,1,0,0,0,255,0,99999.0,root)
local mapArea = createRadarArea(x-125,y-125,250,250,0,255,0,100,root)
local loot_box = createObject(964,x,y,(z-1),0,0,math.random(360));
local house = createObject(3644,x,y,(z+1.5),0,0,0);
setObjectScale(loot_box, 1);
local boxCol = createColSphere(x,y,z,4);
attachElements(boxCol,loot_box,0,0,0);
setElementData(boxCol,"parent",loot_box);
setElementData(loot_box,"parent",boxCol);
setElementData(boxCol,"tent",true);
setElementData(boxCol,"supply_box",true);
setElementData(boxCol,"MAX_Slots",100);
for _,v in ipairs(items) do
local value = math.percentChance(v[2], math.random(2));
setElementData(boxCol, v[1], value);
end
outputAnnouncement("Bandits captured Supply Box, they'll be around for 15 minutes.")
setTimer(function()
if mapArea then destroyElement(mapArea); end
if mapBlip then destroyElement(mapBlip); end
if house then destroyElement(house); end
destroy_object(loot_box);
--outputAnnouncement("Captured Supply Box ended (next mission in 1 hour)")
auto_mission_spawner();
end,mission_active_interval,1)
end
function heli_mission(data)
local id,slots,tires,engine,rotor,tankparts,scrap,fuel,x,y,z,rx,ry,rz = unpack(data);
local veh = createVehicle(id,x,y,z,rx,ry,math.random(360));
local vehCol = createColSphere(x,y,z,2.5);
local areaCol = createColSphere(x,y,z,25);
attachElements(vehCol,veh);
setElementData(vehCol,"parent",veh);
setElementData(veh,"parent",vehCol);
setElementData(vehCol,"vehicle",true);
setElementData(veh,"dayzvehicle",0);
setElementData(vehCol,"MAX_Slots", tonumber(slots));
setElementData(vehCol,"Tire_inVehicle",tires);
setElementData(vehCol,"Engine_inVehicle",engine);
setElementData(vehCol,"Rotor_inVehicle",rotor);
setElementData(vehCol,"Parts_inVehicle",tankparts);
setElementData(vehCol,"Scrap_inVehicle",scrap);
setElementData(vehCol,"needtires", tires);
setElementData(vehCol,"needparts", tankparts);
setElementData(vehCol,"needscrap", scrap);
setElementData(vehCol,"needrotor", rotor);
setElementData(vehCol,"needengines", engine);
setElementData(vehCol,"spawn",{id,x,y,z});
setElementData(vehCol,"fuel",fuel);
for _,v in ipairs(items) do
local value = math.percentChance(v[2], math.random(2));
setElementData(vehCol, v[1], value);
end
local mapBlip = createBlip(x,y,z,56,1,0,0,0,255,0,99999.0,root)
local mapArea = createRadarArea(x-125,y-125,250,250,0,255,0,100,root)
outputAnnouncement("Bandits captured Helicopter, they'll be around for 15 minutes.")
setTimer(function()
for i,v in ipairs(getElementsWithinColShape(areaCol,"vehicle")) do
if (v == veh) then
if areaCol then destroyElement(areaCol); end
if mapBlip then destroyElement(mapBlip); end
if mapArea then destroyElement(mapArea); end
destroy_object(veh);
--outputAnnouncement("Bandits got away with helicopter (next mission in 1 hour)")
auto_mission_spawner();
return;
end
end
if areaCol then destroyElement(areaCol); end
--outputAnnouncement("Bandits have been defeated (next mission in 1 hour)")
auto_mission_spawner();
end,mission_active_interval,1)
end
function start_mission(source,cmd,execute)
if (execute == "start") then
local players = #getElementsByType("player");
if (players >= minimum_players) then
local mission_type = 1;
if (players >= 20) then
mission_type = 2;
end
for i,v in ipairs(missions) do
if (mission_type == i and mission_type == 1) then
local location = math.random(#missions[mission_type]);
for i,v in ipairs(v) do
if (location == i) then
supplybox_mission(v);
end
end
elseif (mission_type == i and mission_type == 2) then
local location = math.random(#missions[mission_type]);
for i,v in ipairs(v) do
if (location == i) then
heli_mission(v);
end
end
end
end
else
--outputAnnouncement("mission couldn't start, needed atleast "..minimum_players.." players.")
end
end
end
function auto_mission_spawner()
setTimer(function()
start_mission(source,"mission","start");
end,1000,1)
end
auto_mission_spawner();
--addCommandHandler("mission",start_mission,false,true) |
#!/usr/bin/env lua
-- MoonFLTK example: menubar-add.lua
--
-- Derived from the FLTK examples/menubar-add.cxx example (http://www.fltk.org)
--
fl = require("moonfltk")
--fl.trace_objects(true)
-- This callback is invoked whenever the user clicks an item in the menu bar
function MyMenuCallback(bar)
local ipath = bar:mvalue() -- the pathname of the menu item that was picked
local label = bar:item_label(ipath) -- its label
local flags = bar:item_flags(ipath)
print("You picked '".. label .."'")
print("- item pathname is:", ipath)
print("- item flags are:", flags, fl.menuitemflags(flags)) -- print also the strings
if (flags & (fl.MENU_RADIO|fl.MENU_TOGGLE)) ~= 0 then -- Toggle or radio item?
print("- item value is:", bar:item_value(ipath)) -- Print item's value
end
if label == "Google" then
fl.open_uri("http://google.com/")
elseif label == "&Quit" then
os.exit(true, true)
end
end
-- main ---------------------
fl.scheme("gtk+")
win = fl.window(400,200, "menubar-simple") -- Create window
menu = fl.menu_bar(0,0,400,25) -- Create menubar, items..
-- pathname, shortcut, callback, argument, flags
menu:add("&File/&Open", fl.shortcut("Ctrl", "o"), MyMenuCallback)
menu:add("&File/&Save", fl.shortcut("Ctrl","s"), MyMenuCallback, nil, 'divider')
menu:add("&File/&Quit", fl.shortcut("Ctrl","q"), MyMenuCallback)
menu:add("&Edit/&Copy", fl.shortcut("Ctrl","c"), MyMenuCallback)
menu:add("&Edit/&Paste", fl.shortcut("Ctrl","v"), MyMenuCallback, nil, 'divider')
menu:add("&Edit/Radio 1", 0, MyMenuCallback, nil, 'radio')
menu:add("&Edit/Radio 2", 0, MyMenuCallback, nil, 'radio', 'divider')
menu:add("&Edit/Toggle 1", 0, MyMenuCallback, nil, 'toggle') -- Default: off
menu:add("&Edit/Toggle 2", 0, MyMenuCallback, nil, 'toggle') -- Default: off
menu:add("&Edit/Toggle 3", 0, MyMenuCallback, nil, 'toggle', 'value') -- Default: on
menu:add("&Help/Google", 0, MyMenuCallback)
-- Example: show how we can dynamically change the state of item Toggle #2 (turn it 'on')
menu:item_set("&Edit/Toggle 2") -- Turn it on
win:done()
win:show()
return fl.run()
|
-----------------------------------
-- Area: Sacrarium
-- NPC: _0s9 (Wooden Gate)
-- !pos 20.000 0.500 19.500 28
-----------------------------------
local ID = require("scripts/zones/Sacrarium/IDs")
-----------------------------------
function onTrigger(player, npc)
if (player:getZPos() > 20) then
player:messageSpecial(ID.text.CANNOT_OPEN_SIDE)
elseif (player:getZPos() < 20) then
player:startEvent(106)
end
end
function onEventUpdate(player, csid, option)
end
function onEventFinish(player, csid, option)
end
|
--[[
This file was extracted by 'EsoLuaGenerator' at '2021-09-04 16:42:25' using the latest game version.
NOTE: This file should only be used as IDE support; it should NOT be distributed with addons!
****************************************************************************
CONTENTS OF THIS FILE IS COPYRIGHT ZENIMAX MEDIA INC.
****************************************************************************
]]
--[[ Gamepad Visual Data Object ]]--
ZO_GamepadEntryData = ZO_DataSourceObject:Subclass()
function ZO_GamepadEntryData:New(...)
local entryData = ZO_DataSourceObject.New(self)
entryData:Initialize(...)
return entryData
end
function ZO_GamepadEntryData:Initialize(text, icon, selectedIcon, highlight, isNew)
self.text = text
self.numIcons = 0
self:AddIcon(icon, selectedIcon)
self.highlight = highlight
self:SetNew(isNew)
self.fontScaleOnSelection = true
self.alphaChangeOnSelection = false
self.showBarEvenWhenUnselected = true
self.enabled = true
self.subLabelTemplate = "ZO_GamepadMenuEntrySubLabelTemplateMain"
end
function ZO_GamepadEntryData:InitializeInventoryVisualData(itemData)
-- Need this on self so that it can be used for a compare by EqualityFunction in ParametricScrollList,
-- SharedInventory modifies the dataSource's uniqueId before the GamepadEntryData is rebuilt,
-- so by copying it over, we can still have access to the old one during the Equality check
self.uniqueId = itemData.uniqueId
self:SetDataSource(itemData)
self:AddIcon(itemData.icon)
if not itemData.questIndex then
-- self.quality is deprecated, included here for addon backwards compatibility
self:SetNameColors(self:GetColorsBasedOnQuality(self.displayQuality or self.quality)) --quest items are only white
end
self.cooldownIcon = itemData.icon or itemData.iconFile
self:SetFontScaleOnSelection(false) --item entries don't grow on selection
end
function ZO_GamepadEntryData:InitializeStoreVisualData(itemData)
self:InitializeInventoryVisualData(itemData)
if itemData.entryType == STORE_ENTRY_TYPE_ANTIQUITY_LEAD then
-- self.quality is deprecated, included here for addon backwards compatibility
self:SetNameColors(self:GetColorsBasedOnAntiquityQuality(self.displayQuality or self.quality))
end
self.meetsUsageRequirement = itemData.meetsRequirementsToBuy and itemData.meetsRequirementsToEquip
self.currencyType1 = itemData.currencyType1
end
function ZO_GamepadEntryData:InitializeTradingHouseVisualData(itemData)
self:InitializeInventoryVisualData(itemData)
self:SetSubLabelColors(ZO_NORMAL_TEXT)
self:SetShowUnselectedSublabels(true)
end
function ZO_GamepadEntryData:InitializeItemImprovementVisualData(bag, index, stackCount, displayQuality)
self.bag = bag
self.index = index
self:SetStackCount(stackCount)
self.displayQuality = displayQuality
-- self.quality is deprecated, included here for addon backwards compatibility
self.quality = displayQuality
self:SetFontScaleOnSelection(false) --item entries don't grow on selection
if displayQuality then
self:SetNameColors(self:GetColorsBasedOnQuality(displayQuality))
else
self:SetNameColors(ZO_NORMAL_TEXT)
end
end
function ZO_GamepadEntryData:AddSubLabels(subLabels)
for _, subLabel in ipairs(subLabels) do
self:AddSubLabel(subLabel)
end
end
function ZO_GamepadEntryData:InitializeImprovementKitVisualData(bag, index, stackCount, displayQuality, subLabels)
self:InitializeItemImprovementVisualData(bag, index, stackCount, displayQuality)
self:AddSubLabels(subLabels)
self:SetSubLabelColors(ZO_NORMAL_TEXT)
end
function ZO_GamepadEntryData:InitializeCraftingInventoryVisualData(bagId, slotIndex, stackCount, customSortData, customBestCategoryNameFunction, slotData)
self:SetStackCount(stackCount)
self.bagId = bagId
self.slotIndex = slotIndex
local itemName = GetItemName(self.bagId, self.slotIndex)
local icon, _, sellPrice, meetsUsageRequirements, _, _, _, functionalQuality, displayQuality = GetItemInfo(self.bagId, self.slotIndex)
self:AddIcon(icon)
self.pressedIcon = self.pressedIcon or icon
self.sellPrice = sellPrice
self.meetsUsageRequirement = meetsUsageRequirements
self.functionalQuality = functionalQuality
self.displayQuality = displayQuality
-- self.quality is deprecated, included here for addon backwards compatibility
self.quality = displayQuality
self.itemType = GetItemType(self.bagId, self.slotIndex)
self.customSortData = customSortData
if slotData then
ZO_ShallowTableCopy(slotData, self)
end
if customBestCategoryNameFunction then
customBestCategoryNameFunction(self)
else
self.bestItemCategoryName = zo_strformat(GetString("SI_ITEMTYPE", self.itemType))
end
self:SetNameColors(self:GetColorsBasedOnQuality(self.displayQuality))
self.subLabelSelectedColor = self.selectedNameColor
self:SetFontScaleOnSelection(false) --item entries don't grow on selection
end
local LOOT_QUEST_COLOR = ZO_ColorDef:New(GetInterfaceColor(INTERFACE_COLOR_TYPE_ITEM_TOOLTIP, ITEM_TOOLTIP_COLOR_QUEST_ITEM_NAME))
function ZO_GamepadEntryData:InitializeLootVisualData(lootId, count, displayQuality, value, isQuest, isStolen, lootType)
self.lootId = lootId
self:SetStackCount(count)
self.displayQuality = displayQuality
-- self.quality is deprecated, included here for addon backwards compatibility
self.quality = displayQuality
self.value = value
self.isQuest = isQuest
self.isStolen = isStolen
self.lootType = lootType
self:SetFontScaleOnSelection(false) --item entries don't grow on selection
if isQuest then
self:SetNameColors(LOOT_QUEST_COLOR, LOOT_QUEST_COLOR)
elseif lootType == LOOT_TYPE_ANTIQUITY_LEAD then
self:SetNameColors(self:GetColorsBasedOnAntiquityQuality(displayQuality))
elseif displayQuality then
self:SetNameColors(self:GetColorsBasedOnQuality(displayQuality))
else
self:SetNameColors(ZO_NORMAL_TEXT)
end
end
--[[ Setters for specific fields and options ]]--
function ZO_GamepadEntryData:SetHeader(header)
self.header = header
end
function ZO_GamepadEntryData:GetHeader()
return self.header
end
function ZO_GamepadEntryData:SetNew(isNew)
self.brandNew = isNew
end
function ZO_GamepadEntryData:IsNew()
if type(self.brandNew) == "function" then
return self.brandNew(self)
else
return self.brandNew
end
end
function ZO_GamepadEntryData:SetText(text)
self.text = text
end
function ZO_GamepadEntryData:GetText()
return self.text
end
function ZO_GamepadEntryData:SetFontScaleOnSelection(active)
self.fontScaleOnSelection = active
end
function ZO_GamepadEntryData:SetAlphaChangeOnSelection(active)
self.alphaChangeOnSelection = active
end
function ZO_GamepadEntryData:SetMaxIconAlpha(alpha)
self.maxIconAlpha = alpha
end
function ZO_GamepadEntryData:SetIgnoreTraitInformation(ignoreTraitInformation)
self.ignoreTraitInformation = ignoreTraitInformation
end
function ZO_GamepadEntryData:GetColorsBasedOnQuality(displayQuality)
local selectedNameColor = GetItemQualityColor(displayQuality)
local unselectedNameColor = GetDimItemQualityColor(displayQuality)
return selectedNameColor, unselectedNameColor
end
function ZO_GamepadEntryData:GetColorsBasedOnAntiquityQuality(antiquityQuality)
local selectedNameColor = GetAntiquityQualityColor(antiquityQuality)
local unselectedNameColor = GetDimAntiquityQualityColor(antiquityQuality)
return selectedNameColor, unselectedNameColor
end
function ZO_GamepadEntryData:SetCooldown(remainingMs, durationMs)
self.timeCooldownRecordedMs = GetFrameTimeMilliseconds()
self.cooldownRemainingMs = remainingMs
self.cooldownDurationMs = durationMs
end
function ZO_GamepadEntryData:GetCooldownDurationMs()
return self.cooldownDurationMs or 0
end
function ZO_GamepadEntryData:GetCooldownTimeRemainingMs()
if self.timeCooldownRecordedMs and self.cooldownRemainingMs then
local timeOffsetMs = GetFrameTimeMilliseconds() - self.timeCooldownRecordedMs
return self.cooldownRemainingMs - timeOffsetMs
end
return 0
end
function ZO_GamepadEntryData:IsOnCooldown()
return self:GetCooldownDurationMs() > 0 and self:GetCooldownTimeRemainingMs() > 0
end
function ZO_GamepadEntryData:AddIconSubtype(subtypeName, texture)
if texture then
if not self[subtypeName] then
self[subtypeName] = {}
for i = 1, self.numIcons do
table.insert(self[subtypeName], false)
end
end
table.insert(self[subtypeName], texture)
end
end
function ZO_GamepadEntryData:GetNumIcons()
return self.numIcons
end
function ZO_GamepadEntryData:GetSubtypeIcon(subtypeName, index)
if self[subtypeName] then
return self[subtypeName][index] or nil
end
end
function ZO_GamepadEntryData:GetIcon(index, selected)
if selected then
local selectedIcon = self:GetSubtypeIcon("iconsSelected", index)
if selectedIcon then
return selectedIcon
end
end
return self:GetSubtypeIcon("iconsNormal", index)
end
function ZO_GamepadEntryData:AddIcon(normalTexture, selectedTexture)
if normalTexture or selectedTexture then
self:AddIconSubtype("iconsNormal", normalTexture)
self:AddIconSubtype("iconsSelected", selectedTexture)
self.numIcons = self.numIcons + 1
end
end
function ZO_GamepadEntryData:ClearIcons()
if self.iconsNormal then
ZO_ClearNumericallyIndexedTable(self.iconsNormal)
end
if self.iconsSelected then
ZO_ClearNumericallyIndexedTable(self.iconsSelected)
end
end
function ZO_GamepadEntryData:GetNameColor(selected)
if self.enabled then
if selected then
return self.selectedNameColor or ZO_GAMEPAD_SELECTED_COLOR
else
return self.unselectedNameColor or ZO_GAMEPAD_UNSELECTED_COLOR
end
else
return self:GetNameDisabledColor(selected)
end
end
function ZO_GamepadEntryData:SetIconTintOnSelection(selected)
self:SetIconTint(selected and ZO_GAMEPAD_SELECTED_COLOR, selected and ZO_GAMEPAD_UNSELECTED_COLOR)
end
function ZO_GamepadEntryData:GetSubLabelColor(selected)
if selected then
return self.selectedSubLabelColor or ZO_GAMEPAD_SELECTED_COLOR
else
return self.unselectedSubLabelColor or ZO_GAMEPAD_UNSELECTED_COLOR
end
end
function ZO_GamepadEntryData:SetNameColors(selectedColor, unselectedColor)
self.selectedNameColor = selectedColor
self.unselectedNameColor = unselectedColor
end
function ZO_GamepadEntryData:SetSubLabelColors(selectedColor, unselectedColor)
self.selectedSubLabelColor = selectedColor
self.unselectedSubLabelColor = unselectedColor
end
function ZO_GamepadEntryData:GetSubLabelTemplate()
return self.subLabelTemplate
end
function ZO_GamepadEntryData:SetSubLabelTemplate(template)
self.subLabelTemplate = template
end
function ZO_GamepadEntryData:SetIconTint(selectedColor, unselectedColor)
self.selectedIconTint = selectedColor
self.unselectedIconTint = unselectedColor
end
-- If this is set for one data entry in a list for a given data type, it must be set for all entries in that list for that data type
-- Otherwise it will not be reset when the control gets recycled
function ZO_GamepadEntryData:SetIconDesaturation(desaturation)
self.iconDesaturation = desaturation
end
-- See comment for SetIconDesaturation
function ZO_GamepadEntryData:SetIconSampleProcessingWeight(type, weight)
if not self.textureSampleProcessingWeights then
self.textureSampleProcessingWeights = {}
end
self.textureSampleProcessingWeights[type] = weight
end
-- See comment for SetIconDesaturation
function ZO_GamepadEntryData:SetIconSampleProcessingWeightTable(typeToWeightTable)
self.textureSampleProcessingWeights = typeToWeightTable
end
-- See comment for SetIconDesaturation
function ZO_GamepadEntryData:SetIconColor(color)
self.iconColor = color
end
function ZO_GamepadEntryData:AddSubLabel(text)
if not self.subLabels then
self.subLabels = {}
end
table.insert(self.subLabels, text)
end
function ZO_GamepadEntryData:ClearSubLabels()
if self.subLabels then
ZO_ClearNumericallyIndexedTable(self.subLabels)
end
end
function ZO_GamepadEntryData:SetShowUnselectedSublabels(showUnselectedSublabels)
self.showUnselectedSublabels = showUnselectedSublabels
end
function ZO_GamepadEntryData:SetChannelActive(isChannelActive)
self.isChannelActive = isChannelActive
end
function ZO_GamepadEntryData:SetLocked(isLocked)
self.isLocked = isLocked
end
function ZO_GamepadEntryData:SetSelected(isSelected)
self.isSelected = isSelected
end
function ZO_GamepadEntryData:SetChannelActive(isChannelActive)
self.isChannelActive = isChannelActive
end
-- Functions for displaying an entry as disabled
function ZO_GamepadEntryData:SetEnabled(isEnabled)
self.enabled = isEnabled
end
function ZO_GamepadEntryData:IsEnabled()
return self.enabled
end
function ZO_GamepadEntryData:SetDisabledNameColors(selectedColor, unselectedColor)
self.selectedNameDisabledColor = selectedColor
self.unselectedNameDisabledColor = unselectedColor
end
function ZO_GamepadEntryData:SetDisabledIconTint(selectedColor, unselectedColor)
self.selectedIconDisabledTint = selectedColor
self.unselectedIconDisabledTint = unselectedColor
end
function ZO_GamepadEntryData:GetNameDisabledColor(selected)
if selected then
return self.selectedNameDisabledColor or ZO_GAMEPAD_DISABLED_SELECTED_COLOR
else
return self.unselectedNameDisabledColor or ZO_GAMEPAD_DISABLED_UNSELECTED_COLOR
end
end
function ZO_GamepadEntryData:SetIconDisabledTintOnSelection(selected)
self:SetDisabledIconTint(selected and ZO_GAMEPAD_DISABLED_SELECTED_COLOR, selected and ZO_GAMEPAD_DISABLED_UNSELECTED_COLOR)
end
function ZO_GamepadEntryData:SetModifyTextType(modifyTextType)
self.modifyTextType = modifyTextType
end
function ZO_GamepadEntryData:SetIsHiddenByWardrobe(isHidden)
self.isHiddenByWardrobe = isHidden
end
function ZO_GamepadEntryData:SetStackCount(stackCount)
self.stackCount = stackCount
end
function ZO_GamepadEntryData:SetCooldownIcon(icon)
self.cooldownIcon = icon
end
function ZO_GamepadEntryData:SetCanLevel(canLevel)
self.canLevel = canLevel
end
function ZO_GamepadEntryData:CanLevel()
if self.canLevel then
if type(self.canLevel) == "function" then
return self.canLevel()
else
return self.canLevel
end
else
return false
end
end
function ZO_GamepadEntryData:SetBarValues(min, max, value)
self.barMin = min
self.barMax = max
self.barValue = value
end
function ZO_GamepadEntryData:SetShowBarEvenWhenUnselected(showBarEvenWhenUnselected)
self.showBarEvenWhenUnselected = showBarEvenWhenUnselected
end
|
GameObject = Object:extend()
function GameObject:new(area)
self.area = area
self.id = Utils:UUID()
self.timer = Timer
end
function GameObject:update(dt)
if self.timer then self.timer.update(dt) end
end
function GameObject:destroy()
if self.timer then self.timer.clear() end
end |
local function rock_autoplace_settings(multiplier, order_suffix, rectangle)
local peak = {
noise_layer = "rocks",
noise_octaves_difference = -2,
noise_persistence = 0.9
}
if rectangle ~= nil then
local aux_center = (rectangle[2][1] + rectangle[1][1]) / 2
local aux_range = math.abs(rectangle[2][1] - rectangle[1][1]) / 2
local water_center = (rectangle[2][2] + rectangle[1][2]) / 2
local water_range = math.abs(rectangle[2][2] - rectangle[1][2]) / 2
peak["aux_optimal"] = aux_center
peak["aux_range"] = aux_range
peak["aux_max_range"] = water_range + 0.05
peak["water_optimal"] = water_center
peak["water_range"] = water_range
peak["water_max_range"] = water_range + 0.05
end
return
{
order = "a[f]-a[huo]-" .. order_suffix,
coverage = multiplier * 0.01,
sharpness = 0.7,
--starting_area_amount = 1,
--starting_area_size = 64,
max_probability = multiplier * 0.7,
peaks = { peak }
}
end
ENTITY {
name = "鬼火",
type = "simple-entity",
flags = { "placeable-neutral", "placeable-off-grid" },
icon = ConstEnum.entity .. "/技能/火/1.png",
icon_size = 280,
subgroup = "grass",
order = "fgh",
collision_box = { { 0, 0 }, { 0, 0 } },
selection_box = { { -2, -2 }, { 2, 2 } },
collision_mask = { "object-layer", "train-layer", "floor-layer", "water-tile" },
--damaged_trigger_effect = hit_effects.rock(),
--dying_trigger_effect = decorative_trigger_effects.huge_rock(),
minable = {
--mining_particle = "stone-particle",
mining_time = 1,
results = { { name = "鬼火", amount_min = 1, amount_max = 50, probability = 0.5 },
{ name = "凡火", amount_min = 1, amount_max = 50, probability = 0.5 } },
--count = 200
},
loot = {
{ item = "鬼火", probability = 1, count_min = 1, count_max = 50 }
},
map_color = { r = 255, g = 0, b = 0 },
--count_as_rock_for_filtered_deconstruction = true,
--mined_sound = { filename = "__base__/sound/deconstruct-bricks.ogg" },
render_layer = "smoke",
max_health = 20000,
resistances = {
{
type = "fire",
percent = 10
}
},
autoplace = rock_autoplace_settings(1, "h[gui]", { { 0, 0.65 }, { 1, 1 } }),
animations = getStripesAnimation("entity/技能/火/", 11, 280, 280, 0.5, { 0, -2 }),
}
ENTITY {
name = "太阳精火",
type = "simple-entity",
flags = { "placeable-neutral", "placeable-off-grid" },
icon = ConstEnum.entity .. "/技能/火/1.png",
icon_size = 280,
subgroup = "grass",
order = "fgh",
collision_box = { { 0, 0 }, { 0, 0 } },
selection_box = { { -2, -2 }, { 2, 2 } },
collision_mask = {},
--damaged_trigger_effect = hit_effects.rock(),
--dying_trigger_effect = decorative_trigger_effects.huge_rock(),
minable = {
--mining_particle = "stone-particle",
mining_time = 3,
results = { { name = "太阳精火", amount_min = 1, amount_max = 50, probability = 1 } },
},
loot = {
{ item = "太阳精火", probability = 1, count_min = 1, count_max = 50 }
},
map_color = { r = 255, g = 0, b = 0 },
--count_as_rock_for_filtered_deconstruction = true,
--mined_sound = { filename = "__base__/sound/deconstruct-bricks.ogg" },
render_layer = "smoke",
max_health = 20000,
resistances = {
{
type = "fire",
percent = 10
}
},
autoplace = rock_autoplace_settings(0.05, "h[gui]", { { 0, 0.65 }, { 1, 1 } }),
animations = getStripesAnimation("entity/技能/火/", 11, 280, 280, 0.5, { 0, -2 }),
}
|
class 'Tips'
function Tips:__init()
self.active = true
self.tip = "СОВЕТ: "
self.text = "Чат: T I Открыть меню сервера: B"
Events:Subscribe( "Lang", self, self.Lang )
Events:Subscribe( "Render", self, self.Render )
end
function Tips:Lang( args )
self.tip = "TIP: "
self.text = "Chat: T I Open Server Menu: B"
end
function Tips:Render()
if self.active then
if Game:GetState() == GUIState.PDA then
Chat:SetEnabled( false )
self.activeTw = true
end
end
if self.activeTw then
if Game:GetState() ~= GUIState.PDA then
Chat:SetEnabled( true )
self.active = true
self.activeTw = false
end
end
if Chat:GetEnabled() and Chat:GetUserEnabled() and not Chat:GetActive() then
local text_width = Render:GetTextWidth( self.text )
if LocalPlayer:GetValue( "ChatBackgroundVisible" ) then
Render:FillArea( Chat:GetPosition() + Vector2( -4, 0 ), Vector2( 508, - Render:GetTextHeight( self.tip ) * 13.5 ), Color( 0, 0, 0, 80 ) )
end
if LocalPlayer:GetValue( "ChatTipsVisible" ) then
Render:FillArea( Chat:GetPosition() + Vector2( 0, 3 ), Vector2( 490, 1 ), Color( 165, 165, 165 ) )
if LocalPlayer:GetValue( "SystemFonts" ) then
Render:SetFont( AssetLocation.SystemFont, "Impact" )
end
Render:DrawText( Chat:GetPosition() + Vector2( 1, 11 ), self.tip .. self.text, Color( 25, 25, 25, 150 ), 13 + 1 )
Render:DrawText( Chat:GetPosition() + Vector2( 0, 10 ), self.tip .. self.text, Color( 200, 200, 200 ), 13 + 1 )
end
end
end
tips = Tips() |
module("auto", package.seeall)
local protobuf = require "protobuf"
local protocol = require "protocol"
local pokers = require('pokers')
auto_packet_handlers = {}
auto_game_action_handlers = {}
function on_auto_packet_game_turn(player, packet, Return, is_resent)
local room = player.room
local seat = player.seat
local show_actions = packet.show_actions
local hand_seq = seat.hand_seq
local wang_count = 0
local er_count = 0
local little_seq = 0
local little_seq_point = 0
for i, v in ipairs(hand_seq) do
local _point = pokers.get_poker_point(v)
if little_seq_point == 0 or _point < little_seq_point then
little_seq = v
little_seq_point = _point
end
if v > 0x50 then wang_count = wang_count + 1 end
if _point == 0x0F then er_count = er_count + 1 end
end
table.sort(seq_points, function(a, b) return a.point < b.point end)
if show_actions[1] == protocol.game_action_jdz then
local jdz = 0
if wang_count > 0 and er_count > 0 then
jdz = 1
end
auto_add_send_bin(Return, auto_pack_protocol("cs_game_action",
player.pid,
{
id = protocol.game_action_jdz,
reply = jdz
}))
elseif show_actions[1] == protocol.game_action_qdz then
local qdz = 0
if wang_count > 0 and er_count > 1 then
qdz = 1
end
auto_add_send_bin(Return, auto_pack_protocol("cs_game_action",
player.pid,
{
id = protocol.game_action_qdz,
reply = qdz
}))
elseif show_actions[1] == protocol.game_action_chupai then
local pokers = {}
if (#hand_seq == 20) or (player.seat_index == room.banker_seat) then
pokers = {little_seq}
end
auto_add_send_bin(Return, auto_pack_protocol("cs_game_action",
player.pid,
{
id = protocol.game_action_chupai,
pokers = pokers
}))
end
end
function on_auto_packet_game_show_actions(player, packet, Return)
local seat = player.seat
local room = player.room
local show_actions = packet.show_actions
if show_actions[1] == protocol.game_action_jiabei then
auto_add_send_bin(Return, auto_pack_protocol("cs_game_action",
player.pid,
{
id = protocol.game_action_jiabei,
reply = 0
}))
end
end
function on_auto_packet_end_game(player, content_lua, Return)
if (player.idtype == "bot") then
local packet = auto_pack_protocol("cs_leave_room", player.pid, {why="player 掉线了"})
print('-----------------------------------------------game end ,托管必须leave-------')
auto_add_send_bin(Return, packet)
end
end
function on_auto_packet_game_debug(player, packet, Return)
print("@@@@@@@@@@@@@@@@@@"..packet.info.."@@@@@@@@@@@@@@"..player.pid)
--assert(false)
end
function register_auto_packet_handler()
auto_packet_handlers["sc_game_turn"] = on_auto_packet_game_turn
auto_packet_handlers["sc_game_show_actions"] = on_auto_packet_game_show_actions
auto_packet_handlers["sc_end_game"] = on_auto_packet_end_game
auto_packet_handlers["sc_game_debug"] = on_auto_packet_game_debug
end
function register_auto_game_action_handler()
auto_game_action_handlers[protocol.game_action_guo_tile] = on_game_game_action_guo_tile
end
function auto_game_on_packet(player, packet_bin, is_resent)
--unpack packet
local protocol_id, protocol_content =
protocol.game_protocol_unpack_bin(packet_bin)
local Return = {}
if protocol_id ~= "sc_protocol_pack" then
local handler = auto_packet_handlers[protocol_id]
if (handler ~= nil) then
handler(player, protocol_content, Return, is_resent)
else
--assert(false)
end
else
for i, v in ipairs(protocol_content.pack) do
local handler = auto_packet_handlers[protocol.game_id_and_desc[v.id]]
-- print(player.pid..'-----'.. protocol.game_id_and_desc[v.id])
if (handler ~= nil) then
handler(player, v.content, Return, is_resent)
else
--assert(false)
end
end
end
return Return
end
function cp_room(room)
return room
end
function auto_add_send_bin(Return, packet)
table.insert(Return, {'send', packet})
end
function auto_pack_protocol(_id, pid, _content)
assert(type(_content) == 'table' or _content == nil)
if (_id == "cs_game_action") then
print(pid..'------' .. _id ..'_'..protocol.game_action_desc[_content.id])
else
print(pid..'------' .. _id)
end
if _content == nil then
return protobuf.encode("gameserver.protocol",
{id = protocol.get_id(_id)})
else
return protobuf.encode("gameserver.protocol",
{id = protocol.get_id(_id), content = auto_pack_content("gameserver." .. _id, _content)})
end
end
function auto_pack_content(desc, t)
assert(type(t) == 'table')
return protobuf.encode(desc, t)
end
register_auto_packet_handler()
register_auto_game_action_handler()
|
local lgi = require("lgi")
local Gtk = lgi.require("Gtk", "3.0")
local app = Gtk.Application { application_id = "com.github.Miqueas.Lua-GTK3-Examples.GtkFlowBox" }
function app:on_activate()
self.active_window:present()
end
function app:on_startup()
local win = Gtk.ApplicationWindow {
application = self,
default_width = 400,
default_height = 400,
border_width = 10
}
win:set_titlebar(Gtk.HeaderBar {
visible = true,
show_close_button = true,
title = "GtkFlowBox"
})
local flowbox = Gtk.FlowBox {
visible = true,
valign = Gtk.Align.START,
selection_mode = Gtk.SelectionMode.NONE,
max_children_per_line = 30
}
local scroll = Gtk.ScrolledWindow {
visible = true,
hscrollbar_policy = Gtk.PolicyType.NEVER
}
local icons = {
"face-angry",
"face-surprise",
"face-laugh",
"face-plain",
"face-sad",
"face-cool",
"face-smirk",
"face-sick",
"face-kiss",
"face-smile"
}
math.randomseed(os.time())
for i = 0, 399 do
flowbox:insert(Gtk.Image {
visible = true,
icon_name = icons[math.random(1, 10)],
pixel_size = 32
}, i)
end
scroll:add(flowbox)
win:add(scroll)
end
return app:run(arg) |
resource_manifest_version '44febabe-d386-4d18-afbe-5e627f4af937'
description 'Limbo Roleplay Framework Core'
files {
'lib/shared/events.lua',
'lib/shared/logging.lua',
'lib/shared/vectormath.lua',
'lib/shared/utilities.lua',
'lib/shared/strings.lua',
'lib/client/loop.lua',
'lib/client/ui.lua',
'lib/client/input.lua',
'strings.lua',
}
client_scripts {
'lib/limbo.lua',
'cl_limbo.lua',
}
server_scripts {
'lib/limbo.lua',
'sv_limbo.lua',
'sv_limbo.js',
}
|
-- This is a generated file! Please edit source .ksy file and use kaitai-struct-compiler to rebuild
--
-- This file is compatible with Lua 5.3
local class = require("class")
require("kaitaistruct")
local stringstream = require("string_stream")
ExprIoEof = class.class(KaitaiStruct)
function ExprIoEof:_init(io, parent, root)
KaitaiStruct._init(self, io)
self._parent = parent
self._root = root or self
self:_read()
end
function ExprIoEof:_read()
self._raw_substream1 = self._io:read_bytes(4)
local _io = KaitaiStream(stringstream(self._raw_substream1))
self.substream1 = ExprIoEof.OneOrTwo(_io, self, self._root)
self._raw_substream2 = self._io:read_bytes(8)
local _io = KaitaiStream(stringstream(self._raw_substream2))
self.substream2 = ExprIoEof.OneOrTwo(_io, self, self._root)
end
ExprIoEof.OneOrTwo = class.class(KaitaiStruct)
function ExprIoEof.OneOrTwo:_init(io, parent, root)
KaitaiStruct._init(self, io)
self._parent = parent
self._root = root or self
self:_read()
end
function ExprIoEof.OneOrTwo:_read()
self.one = self._io:read_u4le()
if not(self._io:is_eof()) then
self.two = self._io:read_u4le()
end
end
ExprIoEof.OneOrTwo.property.reflect_eof = {}
function ExprIoEof.OneOrTwo.property.reflect_eof:get()
if self._m_reflect_eof ~= nil then
return self._m_reflect_eof
end
self._m_reflect_eof = self._io:is_eof()
return self._m_reflect_eof
end
|
token = "TOKEN"
sudo_add = 1
|
-- Tests for writefile()
local helpers = require('test.functional.helpers')(after_each)
local clear, command, expect = helpers.clear, helpers.command, helpers.expect
describe('writefile', function()
setup(clear)
it('is working', function()
command('%delete _')
command('let f = tempname()')
command('call writefile(["over","written"], f, "b")')
command('call writefile(["hello","world"], f, "b")')
command('call writefile(["!", "good"], f, "a")')
command('call writefile(["morning"], f, "ab")')
command('call writefile(["", "vimmers"], f, "ab")')
command('bwipeout!')
command('$put =readfile(f)')
command('1 delete _')
command('call delete(f)')
-- Assert buffer contents.
expect([[
hello
world!
good
morning
vimmers]])
end)
end)
|
local train_util = require("__flib__.train")
local on_tick_n = require("__flib__.on-tick-n")
local constants = require("constants")
local util = require("scripts.util")
local actions = {}
local function toggle_fab(elem, sprite, state)
if state then
elem.style = "flib_selected_frame_action_button"
elem.sprite = sprite .. "_black"
else
elem.style = "frame_action_button"
elem.sprite = sprite .. "_white"
end
end
function actions.close(Gui)
Gui:close()
end
function actions.recenter(Gui)
Gui.refs.window.force_auto_center()
end
function actions.toggle_auto_refresh(Gui)
Gui.state.auto_refresh = not Gui.state.auto_refresh
toggle_fab(Gui.refs.titlebar.refresh_button, "ltnm_refresh", Gui.state.auto_refresh)
end
function actions.toggle_pinned(Gui)
Gui.state.pinned = not Gui.state.pinned
toggle_fab(Gui.refs.titlebar.pin_button, "ltnm_pin", Gui.state.pinned)
if Gui.state.pinned then
Gui.state.pinning = true
Gui.player.opened = nil
Gui.state.pinning = false
else
Gui.player.opened = Gui.refs.window
Gui.refs.window.force_auto_center()
end
end
function actions.update_text_search_query(Gui, _, e)
local query = e.text
-- Input sanitization
for pattern, replacement in pairs(constants.input_sanitizers) do
query = string.gsub(query, pattern, replacement)
end
Gui.state.search_query = query
if Gui.state.search_job then
on_tick_n.remove(Gui.state.search_job)
end
if #query == 0 then
Gui:schedule_update()
else
Gui.state.search_job = on_tick_n.add(
game.tick + 30,
{ gui = "main", action = "update", player_index = Gui.player.index }
)
end
end
function actions.update_network_id_query(Gui)
Gui.state.network_id = tonumber(Gui.refs.toolbar.network_id_field.text) or -1
Gui:schedule_update()
end
function actions.open_train_gui(Gui, msg)
local train_id = msg.train_id
local train_data = Gui.state.ltn_data.trains[train_id]
if not train_data or not train_data.train.valid then
util.error_flying_text(Gui.player, { "message.ltnm-error-train-is-invalid" })
return
end
train_util.open_gui(Gui.player.index, train_data.train)
end
function actions.open_station_gui(Gui, msg, e)
local station_id = msg.station_id
local station_data = Gui.state.ltn_data.stations[station_id]
if not station_data or not station_data.entity.valid then
util.error_flying_text(Gui.player, { "message.ltnm-error-station-is-invalid" })
return
end
--- @type LuaPlayer
local player = Gui.player
if e.shift then
player.zoom_to_world(station_data.entity.position, 1)
rendering.draw_circle({
color = constants.colors.red.tbl,
target = station_data.entity.position,
surface = station_data.entity.surface,
radius = 0.5,
filled = false,
width = 5,
time_to_live = 60 * 3,
players = { player },
})
if not Gui.state.pinned then
Gui:close()
end
elseif e.control and remote.interfaces["ltn-combinator"] then
if not remote.call("ltn-combinator", "open_ltn_combinator", e.player_index, station_data.lamp_control, true) then
util.error_flying_text(player, { "message.ltnm-error-ltn-combinator-not-found" })
end
else
player.opened = station_data.entity
end
end
function actions.toggle_sort(Gui, msg, e)
local tab = msg.tab
local column = msg.column
local sorts = Gui.state.sorts[tab]
local active_column = sorts._active
if active_column == column then
sorts[column] = e.element.state
else
sorts._active = column
e.element.state = sorts[column]
local widths = Gui.widths[tab]
local old_checkbox = Gui.refs[tab].toolbar[active_column .. "_checkbox"]
old_checkbox.style = "ltnm_sort_checkbox"
if widths[active_column .. "_checkbox_stretchy"] then
old_checkbox.style.horizontally_stretchable = true
else
old_checkbox.style.width = widths[active_column]
end
e.element.style = "ltnm_selected_sort_checkbox"
if widths[column .. "_checkbox_stretchy"] then
e.element.style.horizontally_stretchable = true
else
e.element.style.width = widths[column]
end
end
Gui:schedule_update()
end
function actions.update(Gui)
Gui:schedule_update()
end
function actions.change_tab(Gui, msg)
Gui.state.active_tab = msg.tab
Gui:schedule_update()
end
function actions.change_surface(Gui, _, e)
local selected_index = e.element.selected_index
local selected_surface_index = Gui.state.ltn_data.surfaces.selected_to_index[selected_index]
if selected_surface_index then
Gui.state.surface = selected_surface_index
Gui:schedule_update()
end
end
function actions.clear_history(Gui)
global.flags.deleted_history = true
Gui:schedule_update()
end
function actions.delete_alert(Gui, msg)
global.active_data.alerts_to_delete[msg.alert_id] = true
Gui:schedule_update()
end
function actions.delete_all_alerts(Gui)
global.flags.deleted_all_alerts = true
Gui:schedule_update()
end
function actions.focus_search(Gui)
if not Gui.pinned then
Gui.refs.toolbar.text_search_field.select_all()
Gui.refs.toolbar.text_search_field.focus()
end
end
return actions
|
--====================================================================--
-- dmc_widget/widget_navbar.lua
--
-- Documentation: http://docs.davidmccuskey.com/
--====================================================================--
--[[
The MIT License (MIT)
Copyright (c) 2015 David McCuskey
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
--]]
--====================================================================--
--== DMC Corona Widgets : Widget Nav Bar
--====================================================================--
-- Semantic Versioning Specification: http://semver.org/
local VERSION = "0.1.0"
--====================================================================--
--== DMC Widgets Setup
--====================================================================--
local dmc_widget_data, dmc_widget_func
dmc_widget_data = _G.__dmc_widget
dmc_widget_func = dmc_widget_data.func
--====================================================================--
--== DMC Widgets : newNavBar
--====================================================================--
--====================================================================--
--== Imports
local Objects = require 'dmc_objects'
--== Components
local Widgets -- set later
local NavItem -- set later
--====================================================================--
--== Setup, Constants
-- setup some aliases to make code cleaner
local newClass = Objects.newClass
local ComponentBase = Objects.ComponentBase
local tinsert = table.insert
local tremove = table.remove
local LOCAL_DEBUG = false
--====================================================================--
--== Nav Bar Widget Class
--====================================================================--
local NavBar = newClass( ComponentBase, {name="Nav Bar"} )
--== Class Constants
NavBar.HEIGHT = 40
NavBar.MARGINS = {x=5,y=0}
NavBar.FORWARD = 'forward-trans'
NavBar.REVERSE = 'reverse-trans'
NavBar.TRANSITION_TIME = 400
--== Event Constants
NavBar.EVENT = 'button-event'
--======================================================--
-- Start: Setup DMC Objects
function NavBar:__init__( params )
-- print( "NavBar:__init__" )
params = params or {}
if params.height==nil then params.height=NavBar.HEIGHT end
if params.transition_time==nil then params.transition_time=NavBar.TRANSITION_TIME end
self:superCall( '__init__', params )
--==--
--== Sanity Check ==--
if self.is_class then return end
assert( params.width, "NavBar: requires param 'width'" )
--== Create Properties ==--
self._width = params.width
self._height = params.height
self._trans_time = params.transition_time
self._items = {} -- stack of nav items
--== Object References ==--
self._nav_controller = nil -- dmc navigator
self._root_item = nil
self._back_item = nil
self._top_item = nil
self._new_item = nil
self._bg_touch = nil
end
function NavBar:__undoInit__()
-- print( "NavBar:__undoInit__" )
self._root_item = nil
self._back_item = nil
self._top_item = nil
self._new_item = nil
--==--
self:superCall( '__undoInit__' )
end
-- __createView__()
--
function NavBar:__createView__()
-- print( "NavBar:__createView__" )
self:superCall( '__createView__' )
--==--
local W,H = self._width, self._height
-- local H_CENTER, V_CENTER = W*0.5, H*0.5
local o
-- setup background
o = display.newRect(0, 0, W, H)
o:setFillColor(1,1,1,1)
if LOCAL_DEBUG then
o:setFillColor(1,0,0,0.5)
end
o.isHitTestable = true
o.anchorX, o.anchorY = 0.5,0
o.x, o.y = 0,0
self.view:insert( o ) -- using view because of override
self._bg_touch = o
end
function NavBar:__undoCreateView__()
-- print( "NavBar:__undoCreateView__" )
local o
o = self._bg_touch
o:removeSelf()
self._bg_touch = nil
--==--
self:superCall( '__undoCreateView__' )
end
--== initComplete
function NavBar:__initComplete__()
-- print( "NavBar:__initComplete__" )
self:superCall( '__initComplete__' )
--==--
self:setTouchBlock( self._bg_touch )
end
function NavBar:__undoInitComplete__()
-- print( "NavBar:__undoInitComplete__" )
self:unsetTouchBlock( self._bg_touch )
--==--
self:superCall( '__undoInitComplete__' )
end
-- END: Setup DMC Objects
--======================================================--
--====================================================================--
--== Static Methods
function NavBar.__setWidgetManager( manager )
-- print( "NavBar.__setWidgetManager" )
Widgets = manager
NavItem = manager.NavItem
end
--====================================================================--
--== Public Methods
-- setter: set background color of table view
--
function NavBar.__setters:bg_color( color )
-- print( "NavBar.__setters:bg_color", color )
assert( type(color)=='table', "color must be a table of values" )
self._bg_touch:setFillColor( unpack( color ) )
end
function NavBar.__setters:controller( obj )
-- print( "NavBar.__setters:controller", obj )
-- assert( type(color)=='table', "color must be a table of values" )
self._nav_controller = obj
end
function NavBar:pushNavItem( item, params )
-- print( "NavBar:pushNavItem", item )
params = params or {}
assert( type(item)=='table' and item.isa and item:isa( NavItem ), "pushNavItem: item must be a NavItem" )
--==--
self:_setNextItem( item, params )
self:_gotoNext( params.animate )
end
function NavBar:popNavItemAnimated()
-- print( "NavBar:popNavItemAnimated" )
self:_gotoPrev( true )
end
--====================================================================--
--== Private Methods
-- private method used by dmc-navigator
--
function NavBar:_pushNavItemGetTransition( item, params )
self:_setNextItem( item, params )
return self:_getNextTrans()
end
-- private method used by dmc-navigator
--
function NavBar:_popNavItemGetTransition()
return self:_getPrevTrans()
end
function NavBar:_setNextItem( item, params )
params = params or {}
if params.animate==nil then params.animate=true end
--==--
if self._root_item then
-- pass
else
self._root_item = item
self._top_item = nil
params.animate = false
end
self._new_item = item
end
function NavBar:_addToView( item )
-- print( "NavBar:_addToView", item )
local W, H = self._width, self._height
local H_CENTER, V_CENTER = W*0.5, H*0.5
local back, left, right = item.back_button, item.left_button, item.right_button
local title = item.title
if back then
self:insert( back.view )
back.y = V_CENTER
back.isVisible=false
end
if left then
self:insert( left.view )
left.y = V_CENTER
left.isVisible=false
end
if title then
self:insert( title.view )
title.y = V_CENTER
title.isVisible=false
end
if right then
self:insert( right.view )
right.y = V_CENTER
right.isVisible=false
end
end
function NavBar:_removeFromView( item )
-- print( "NavBar:_removeFromView", item )
if item.removeSelf then item:removeSelf() end
end
function NavBar:_startEnterFrame( func )
Runtime:addEventListener( 'enterFrame', func )
end
function NavBar:_stopEnterFrame( func )
Runtime:removeEventListener( 'enterFrame', func )
end
function NavBar:_startReverse( func )
local start_time = system.getTimer()
local duration = self.TRANSITION_TIME
local rev_f
rev_f = function(e)
local delta_t = e.time-start_time
local perc = 100-(delta_t/duration*100)
if perc < 0 then
perc = 0
self:_stopEnterFrame( rev_f )
end
func( perc )
end
self:_startEnterFrame( rev_f )
end
function NavBar:_startForward( func )
local start_time = system.getTimer()
local duration = self.TRANSITION_TIME
local frw_f
frw_f = function(e)
local delta_t = e.time-start_time
local perc = delta_t/duration*100
if perc > 100 then
perc = 100
self:_stopEnterFrame( frw_f )
end
func( perc )
end
self:_startEnterFrame( frw_f )
end
-- can be retreived by another object (ie, NavBar)
function NavBar:_getNextTrans()
-- print( "NavBar:_getNextTrans" )
return self:_getTransition( self._top_item, self._new_item, self.FORWARD )
end
function NavBar:_gotoNext( animate )
-- print( "NavBar:_gotoNext" )
local func = self:_getNextTrans()
if not animate then
func(100)
else
self:_startForward( func )
end
end
-- can be retreived by another object (ie, NavBar)
function NavBar:_getPrevTrans()
-- print( "NavBar:_getPrevTrans" )
return self:_getTransition( self._back_item, self._top_item, self.REVERSE )
end
function NavBar:_gotoPrev( animate )
-- print( "NavBar:_gotoPrev" )
local func = self:_getPrevTrans()
if not animate then
func( 0 )
else
self:_startReverse( func )
end
end
function NavBar:_getTransition( from_item, to_item, direction )
-- print( "NavBar:_getTransition", from_item, to_item, direction )
local W, H = self._width, self._height
local H_CENTER, V_CENTER = W*0.5, H*0.5
local MARGINS = self.MARGINS
-- display(left/back), back, left, title, right
local f_d, f_b, f_l, f_t, f_r
local t_d, t_b, t_l, t_t, t_r
local callback
-- setup from_item vars
if from_item then
f_b, f_l, f_r = from_item.back_button, from_item.left_button, from_item.right_button
f_t = from_item.title
f_d = f_b
if f_l then
f_b.isVisible = false
f_d = f_l
end
end
-- setup to_item vars
if to_item then
t_b, t_l, t_r = to_item.back_button, to_item.left_button, to_item.right_button
t_t = to_item.title
t_d = t_b
if t_l then
t_b.isVisible=false
t_d = t_l
end
end
-- calcs for showing left/back buttons
local stack_offset = 0
if direction==self.FORWARD then
self:_addToView( to_item )
stack_offset = 0
else
stack_offset = 1
end
local stack, stack_size = self._items, #self._items
callback = function( percent )
-- print( "NavBar:transition", percent )
local dec_p = percent/100
local from_a, to_a = 1-dec_p, dec_p
local X_OFF = H_CENTER*dec_p
if percent==0 then
--== edge of transition ==--
--== Finish up
if direction==self.REVERSE then
local item = tremove( stack )
self:_removeFromView( item )
self._top_item = from_item
self._new_item = nil
self._back_item = stack[ #stack-1 ] -- get previous
end
--== Left/Back
if t_d then
t_d.isVisible = false
end
if f_l or #self._items>1 then
f_d.isVisible = true
f_d.x = -H_CENTER+f_d.width/2+MARGINS.x
f_d.alpha = 1
else
f_d.isVisible = false
end
--== Title
if t_t then
t_t.isVisible = false
end
if f_t then
f_t.isVisible = true
f_t.x = 0
f_t.alpha = 1
end
--== Right
if t_r then
t_r.isVisible = false
end
if f_r then
f_r.isVisible = true
f_r.x = H_CENTER
f_r.alpha = 1
end
elseif percent==100 then
--== edge of transition ==--
--== Left/Back
-- checking if Left exists or Stack, still use t_d
if t_l or stack_size>0 then
t_d.x = -H_CENTER+t_d.width/2+MARGINS.x
t_d.isVisible = true
t_d.alpha = 1
else
t_d.isVisible = false
end
if f_d then
f_d.isVisible = false
end
--== Title
if t_t then
t_t.x = 0
t_t.isVisible = true
t_t.alpha = 1
end
if f_t then
f_t.isVisible = false
end
--== Right
if t_r then
t_r.x = H_CENTER
t_r.isVisible = true
t_r.alpha = 1
end
if f_r then
f_r.isVisible = false
end
--== Finish up
if direction==self.FORWARD then
self._back_item = from_item
self._new_item = nil
self._top_item = to_item
tinsert( self._items, to_item )
end
else
--== middle of transition ==--
--== Left/Back
if t_l or stack_size>(0+stack_offset) then
t_d.isVisible = true
t_d.x = -X_OFF+t_d.width/2+MARGINS.x
t_d.alpha = to_a
else
t_d.isVisible = false
end
if f_l or stack_size>(1+stack_offset) then
f_d.isVisible = true
f_d.x = -H_CENTER-X_OFF+f_d.width/2+MARGINS.x
f_d.alpha = from_a
else
f_d.isVisible = false
end
--== Title
if t_t then
t_t.isVisible = true
-- t_t.x, t_t.y = H_CENTER-X_OFF, V_CENTER
t_t.x = H_CENTER-X_OFF
t_t.alpha = to_a
end
if f_t then
f_t.isVisible = true
f_t.x = 0-X_OFF
f_t.alpha = from_a
end
--== Right
if t_r then
t_r.isVisible = true
t_r.x = W-X_OFF
t_r.alpha = to_a
end
if f_r then
f_r.isVisible = true
f_r.x = H_CENTER-X_OFF
f_r.alpha = from_a
end
end
end
return callback
end
--====================================================================--
--== Event Handlers
-- none
return NavBar
|
local questionnaireAnswers = {}
questionnaireAnswers = {}
return questionnaireAnswers |
return function()
local result = {}
if not game.active_mods['SmartTrains'] then
return nil
end
return {
categories = {
rail = {
groups = {
track = {
items = {
['smart-train-stop'] = { order = 202 }
}
}
}
}
}
}
end
|
-- Game state assets
Assets =
{
[0] =
{type = "texture", id = "triforce", file = "./Assets/ItemSprites/triforcePieces.png"},
{type = "texture", id = "map", file = "./Assets/Backgrounds/entire_worldmap_single_image.png"},
{type = "texture", id = "level_1", file = "./Assets/Backgrounds/Level1.png"},
{type = "texture", id = "items", file = "./Assets/ItemSprites/Items.png"},
{type = "texture", id = "hud_holder", file = "./Assets/HUDSprites/hudHolder.png"},
{type = "texture", id = "hud_hearts", file = "./Assets/Backgrounds/hearts.png"},
{type = "texture", id = "hud_words", file = "./Assets/HUDSprites/HUD_words.png"},
{type = "texture", id = "world_location", file = "./Assets/HUDSprites/world_location.png"},
{type = "texture", id = "locator", file = "./Assets/HUDSprites/location.png"},
{type = "texture", id = "npcs", file = "./Assets/NPCSprites/npcs.png"},
{type = "texture", id = "enemies", file = "./Assets/EnemySprites/sprites_enemies.png"},
{type = "texture", id = "octorok", file = "./Assets/EnemySprites/octorok.png"},
{type = "texture", id = "moblin", file = "./Assets/EnemySprites/moblin.png"},
{type = "texture", id = "darknut", file = "./Assets/EnemySprites/darknut.png"},
{type = "texture", id = "leever", file = "./Assets/EnemySprites/leever.png"},
{type = "texture", id = "enemy_death", file = "./Assets/EnemySprites/EnemyDeath.png"},
{type = "texture", id = "player_death", file = "./Assets/PlayerSprites/player_death.png"},
{type = "texture", id = "numbers", file = "./Assets/Fonts/numbers.png"},
{type = "texture", id = "full_heart", file = "./Assets/ItemSprites/full_heart.png"},
{type = "texture", id = "Dungeon_Tiles", file = "./Assets/Tilemaps/Tiles/Dungeon_Tiles.png"},
{type = "soundFX", id = "magic_rod", file = "./Assets/sounds/MagicalRod.wav"},
{type = "soundFX", id = "boomerang_arrow", file = "./Assets/sounds/Arrow_Boomerang.wav"},
{type = "soundFX", id = "candle", file = "./Assets/sounds/Candle.wav"},
{type = "soundFX", id = "bomb_drop", file = "./Assets/sounds/Bomb_Drop.wav"},
{type = "soundFX", id = "bomb_blow", file = "./Assets/sounds/Bomb_Blow.wav"},
{type = "soundFX", id = "sword_slash", file = "./Assets/sounds/Sword_Slash.wav"},
{type = "soundFX", id = "sword_shoot", file = "./Assets/sounds/Sword_Shoot.wav"},
{type = "soundFX", id = "link_hurt", file = "./Assets/sounds/Link_Hurt.wav"},
{type = "soundFX", id = "link_die", file = "./Assets/sounds/Link_Die.wav"},
{type = "soundFX", id = "low_health", file = "./Assets/sounds/LowHealth.wav"},
{type = "soundFX", id = "get_rupee", file = "./Assets/sounds/Get_Rupee.wav"},
{type = "soundFX", id = "get_item", file = "./Assets/sounds/Get_Item.wav"},
{type = "soundFX", id = "stairs", file = "./Assets/sounds/Stairs.wav"},
{type = "soundFX", id = "enemy_hit", file = "./Assets/sounds/Enemy_Hit.wav"},
{type = "soundFX", id = "enemy_die", file = "./Assets/sounds/Enemy_Die.wav"},
{type = "soundFX", id = "fanfare", file = "./Assets/sounds/Fanfare.wav"},
{type = "soundFX", id = "text_fast", file = "./Assets/sounds/text.wav"},
{type = "soundFX", id = "shield", file = "./Assets/sounds/Shield.wav"},
{type = "soundFX", id = "secret", file = "./Assets/sounds/Secret.wav"},
{type = "music", id = "dungeon", file = "./Assets/Music/Dungeon_Theme.mp3"},
{type = "music", id = "Overworld", file = "./Assets/Music/Overworld_Theme.mp3"},
}
|
require 'torch'
-- construct an object to deal with the mapping
local mapper = torch.class('Mapper')
function mapper:__init(dictPath)
assert(paths.filep(dictPath), dictPath ..' not found')
self.alphabet2token = {}
self.token2alphabet = {}
-- make maps
local cnt = 0
for line in io.lines(dictPath) do
self.alphabet2token[line] = cnt
self.token2alphabet[cnt] = line
cnt = cnt + 1
end
end
function mapper:encodeString(line)
line = string.lower(line)
local label = {}
for i = 1, #line do
local character = line:sub(i, i)
table.insert(label, self.alphabet2token[character])
end
return label
end
function mapper:decodeOutput(predictions)
--[[
Turns the predictions tensor into a list of the most likely tokens
NOTE:
to compute WER we strip the begining and ending spaces
--]]
local tokens = {}
local blankToken = self.alphabet2token['$']
local preToken = blankToken
-- The prediction is a sequence of likelihood vectors
local _, maxIndices = torch.max(predictions, 2)
maxIndices = maxIndices:float():squeeze()
for i=1, maxIndices:size(1) do
local token = maxIndices[i] - 1 -- CTC indexes start from 1, while token starts from 0
-- add token if it's not blank, and is not the same as pre_token
if token ~= blankToken and token ~= preToken then
table.insert(tokens, token)
end
preToken = token
end
return tokens
end
function mapper:tokensToText(tokens)
local text = ""
for i, t in ipairs(tokens) do
text = text .. self.token2alphabet[tokens[i]]
end
return text
end
|
// This is the ID given to any weapon item for all teams
ITEM_WPN_COMMON = 11
function FUNC_DROPWEAPON( ply, id, client, icon )
if icon then return "icon16/arrow_down.png" end
if client then return translate.Get( "rd_ui_shop_drop" ) end
local tbl = item.GetByID( id )
local prop = ents.Create( "sent_droppedgun" )
prop:SetPos( ply:GetItemDropPos() )
if tbl.DropModel then
prop:SetModel( tbl.DropModel )
else
prop:SetModel( tbl.Model )
end
prop:Spawn()
ply:EmitSound( Sound( "items/ammopickup.wav" ) )
ply:RemoveFromInventory( id )
if not ply:HasItem( id ) then
ply:StripWeapon( tbl.Weapon )
end
end
function FUNC_REMOVEWEAPON( ply, id )
local tbl = item.GetByID( id )
if not ply:HasItem( id ) then
ply:StripWeapon( tbl.Weapon )
end
end
function FUNC_GRABWEAPON( ply, id )
local tbl = item.GetByID( id )
ply:Give( tbl.Weapon )
return true
end
item.Register( {
Name = "rd_items_hammer_name",
Description = "rd_items_hammer_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 3,
Price = 35,
Rarity = 0.40,
Model = "models/weapons/w_hammer.mdl",
Weapon = "rad_hammer",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,-28,0),
CamOrigin = Vector(0,0,5)
} )
item.Register( {
Name = "rd_items_axe_name",
Description = "rd_items_axe_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 5,
Price = 50,
Rarity = 0.60,
Model = "models/weapons/w_axe.mdl",
Weapon = "rad_axe",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,-42,0),
CamOrigin = Vector(0,0,8)
} )
item.Register( {
Name = "rd_items_crowbar_name",
Description = "rd_items_crowbar_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
SaleOverride = true,
Weight = 5,
Price = 50,
Rarity = 0.20,
Model = "models/weapons/w_crowbar.mdl",
Weapon = "rad_crowbar",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,0,-44),
CamOrigin = Vector(0,0,8)
} )
item.Register( {
Name = "rd_items_fn_fiveseven_name",
Description = "rd_items_fn_fiveseven_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
SaleOverride = true,
Weight = 3,
Price = 8,
Rarity = 0.90,
Model = "models/weapons/w_pist_fiveseven.mdl",
Weapon = "rad_fiveseven",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,17,5),
CamOrigin = Vector(2,0,3)
} )
item.Register( {
Name = "rd_items_usp_compact_name",
Description = "rd_items_usp_compact_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
SaleOverride = true,
Weight = 3,
Price = 8,
Rarity = 0.90,
Model = "models/weapons/w_pistol.mdl",
Weapon = "rad_usp",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,-17,0),
CamOrigin = Vector(-1,0,-2)
} )
item.Register( {
Name = "rd_items_p228_compact_name",
Description = "rd_items_p228_compact_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
SaleOverride = true,
Weight = 3,
Price = 8,
Rarity = 0.90,
Model = "models/weapons/w_pist_p228.mdl",
Weapon = "rad_p228",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,17,5),
CamOrigin = Vector(2,0,3)
} )
item.Register( {
Name = "rd_items_glock_19_name",
Description = "rd_items_glock_19_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
SaleOverride = true,
Weight = 3,
Price = 8,
Rarity = 0.90,
Model = "models/weapons/w_pist_glock18.mdl",
Weapon = "rad_glock",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,17,5),
CamOrigin = Vector(2,0,3)
} )
item.Register( {
Name = "rd_items_dual_berettas_name",
Description = "rd_items_dual_berettas_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 3,
Price = 35,
Rarity = 0.20,
Model = "models/weapons/w_pist_elite_single.mdl",
DropModel = "models/weapons/w_pist_elite_dropped.mdl",
Weapon = "rad_berettas",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,15,-5),
CamOrigin = Vector(2,0,3)
} )
item.Register( {
Name = "rd_items_colt_python_name",
Description = "rd_items_colt_python_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 4,
Price = 40,
Rarity = 0.20,
Model = "models/weapons/w_357.mdl",
Weapon = "rad_revolver",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,18,0),
CamOrigin = Vector(6,0,0)
} )
item.Register( {
Name = "rd_items_desert_eagle_name",
Description = "rd_items_desert_eagle_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 4,
Price = 45,
Rarity = 0.20,
Model = "models/weapons/w_pist_deagle.mdl",
Weapon = "rad_deagle",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,15,2),
CamOrigin = Vector(3,0,4)
} )
item.Register( {
Name = "rd_items_mac_10_name",
Description = "rd_items_mac_10_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 4,
Price = 50,
Rarity = 0.20,
Model = "models/weapons/w_smg_mac10.mdl",
Weapon = "rad_mac10",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,20,5),
CamOrigin = Vector(2,0,3)
} )
item.Register( {
Name = "rd_items_ump_45_name",
Description = "rd_items_ump_45_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 6,
Price = 55,
Rarity = 0.30,
Model = "models/weapons/w_smg_ump45.mdl",
Weapon = "rad_ump45",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,30,5),
CamOrigin = Vector(-2,0,4)
} )
item.Register( {
Name = "rd_items_cmp_250_name",
Description = "rd_items_cmp_250_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 4,
Price = 60,
Rarity = 0.30,
Model = "models/weapons/w_smg1.mdl",
Weapon = "rad_cmp",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,27,0),
CamOrigin = Vector(-1,0,-1)
} )
item.Register( {
Name = "rd_items_winchester_1887_name",
Description = "rd_items_winchester_1887_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 6,
Price = 65,
Rarity = 0.30,
Model = "models/weapons/w_annabelle.mdl",
Weapon = "rad_shotgun",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,-50,5),
CamOrigin = Vector(3,0,1)
} )
item.Register( {
Name = "rd_items_tmp_name",
Description = "rd_items_tmp_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 4,
Price = 70,
Rarity = 0.40,
Model = "models/weapons/w_smg_tmp.mdl",
Weapon = "rad_tmp",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,31,5),
CamOrigin = Vector(5,0,3)
} )
item.Register( {
Name = "rd_items_mp5_name",
Description = "rd_items_mp5_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 6,
Price = 75,
Rarity = 0.40,
Model = "models/weapons/w_smg_mp5.mdl",
Weapon = "rad_mp5",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,38,5),
CamOrigin = Vector(2,0,5)
} )
item.Register( {
Name = "rd_items_famas_name",
Description = "rd_items_famas_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 9,
Price = 80,
Rarity = 0.50,
Model = "models/weapons/w_rif_famas.mdl",
Weapon = "rad_famas",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(-7,39,5),
CamOrigin = Vector(-6,0,5)
} )
item.Register( {
Name = "rd_items_fn_p90_name",
Description = "rd_items_fn_p90_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 4,
Price = 85,
Rarity = 0.50,
Model = "models/weapons/w_smg_p90.mdl",
Weapon = "rad_p90",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,35,5),
CamOrigin = Vector(1,0,5)
} )
item.Register( {
Name = "rd_items_steyr_scout_name",
Description = "rd_items_steyr_scout_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 9,
Price = 90,
Rarity = 0.60,
Model = "models/weapons/w_snip_scout.mdl",
Weapon = "rad_scout",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,44,5),
CamOrigin = Vector(0,0,4)
} )
item.Register( {
Name = "rd_items_imi_galil_name",
Description = "rd_items_imi_galil_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 8,
Price = 100,
Rarity = 0.60,
Model = "models/weapons/w_rif_galil.mdl",
Weapon = "rad_galil",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,42,5),
CamOrigin = Vector(-1,0,3)
} )
item.Register( {
Name = "rd_items_spas_12_name",
Description = "rd_items_spas_12_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 7,
Price = 110,
Rarity = 0.70,
Model = "models/weapons/w_shotgun.mdl",
Weapon = "rad_spas12",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,-34,0),
CamOrigin = Vector(0,0,0)
} )
item.Register( {
Name = "rd_items_ak_47_name",
Description = "rd_items_ak_47_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 7,
Price = 130,
Rarity = 0.80,
Model = "models/weapons/w_rif_ak47.mdl",
Weapon = "rad_ak47",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,43,5),
CamOrigin = Vector(0,0,3)
} )
item.Register( {
Name = "rd_items_sg_552_name",
Description = "rd_items_sg_552_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 8,
Price = 150,
Rarity = 0.90,
Model = "models/weapons/w_rif_sg552.mdl",
Weapon = "rad_sg552",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,37,5),
CamOrigin = Vector(-4,0,5)
} )
item.Register( {
Name = "rd_items_g3_sg1_name",
Description = "rd_items_g3_sg1_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 9,
Price = 170,
Rarity = 0.90,
Model = "models/weapons/w_snip_g3sg1.mdl",
Weapon = "rad_g3",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,42,5),
CamOrigin = Vector(-3,0,5)
} )
item.Register( {
Name = "rd_items_heat_cannon_name",
Description = "rd_items_heat_cannon_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 9,
Price = 190,
Rarity = 0.70,
Model = "models/weapons/w_physics.mdl",
Weapon = "rad_firegun",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,35,0),
CamOrigin = Vector(10,0,-1)
} )
item.Register( {
Name = "rd_items_ppw_952_name",
Description = "rd_items_ppw_952_desc",
Stackable = false,
Type = ITEM_WPN_COMMON,
TypeOverride = "sent_droppedgun",
Weight = 9,
Price = 200,
Rarity = 0.70,
Model = "models/weapons/w_irifle.mdl",
Weapon = "rad_experimental",
Functions = { FUNC_DROPWEAPON },
PickupFunction = FUNC_GRABWEAPON,
DropFunction = FUNC_REMOVEWEAPON,
CamPos = Vector(0,-40,0),
CamOrigin = Vector(5,0,0)
} )
|
--- Module which is responsible for dispatching events with expectations
--
-- *Dependencies:* `expectations`, `events`
--
-- *Globals:* `config`
-- @copyright [Ford Motor Company](https://smartdevicelink.com/partners/ford/) and [SmartDeviceLink Consortium](https://smartdevicelink.com/consortium/)
-- @license <https://github.com/smartdevicelink/sdl_core/blob/master/LICENSE>
local expectations = require('expectations')
local events = require('events')
--- Type which is responsible for dispatching events with expectations
-- @type EventDispatcher
local Dispatcher = {}
local mt = { __index = { } }
--- Construct instance of EventDispatcher type
-- @treturn EventDispatcher Constructed instance
function Dispatcher.EventDispatcher()
local res =
{
--- Pool of events level 0 (frame events handlers)
_pool0 = { },
--- Pool of events level 1 (anyEvent message handlers)
_pool1 = { },
--- Pool of events level 2 (message events handlers)
_pool2 = { },
--- Pool of events level 3 (connect/disconnect handlers)
_pool3 = { },
--- Pre event handler
preEventHandler = nil,
--- Post event handler
postEventHandler = nil
}
setmetatable(res, mt)
return res
end
--- Get Handler
-- @tparam Connection conn Mobile/HMI connection
-- @tparam Event event Event
-- @treturn table Handler
function mt.__index:GetHandler(conn, event)
local res = self._pool3[conn][event]
or self._pool2[conn][event]
or self._pool1[conn][event]
or self._pool0[conn][event]
return res
end
--- Find handler for event
-- @tparam Connection connection Mobile/HMI connection
-- @tparam table data Data for find event
-- @treturn Expectation Handler
function mt.__index:FindHandler(connection, data)
-- Visit all event pools and find matching event
local function findInPool(pool, data)
for event, handler in pairs(pool) do
if event:matches(data) then
return handler
end
end
return nil
end
if data._technical and data._technical.isFrame then
return findInPool(self._pool0[connection], data)
end
return findInPool(self._pool3[connection], data)
or findInPool(self._pool2[connection], data)
or findInPool(self._pool1[connection], data)
end
--- Set handler for pre event
-- @tparam function func Pre event handler.
function mt.__index:OnPreEvent(func)
self.preEventHandler = func
end
--- Set handler for post event
-- @tparam function func Post event handler.
function mt.__index:OnPostEvent(func)
self.postEventHandler = func
end
--- Validate all expectations
function mt.__index:validateAll()
local function iter(pool)
for _, expectation in pairs(pool) do
expectation:validate()
end
end
for _, pool in pairs(self._pool3) do iter(pool) end
for _, pool in pairs(self._pool2) do iter(pool) end
for _, pool in pairs(self._pool1) do iter(pool) end
for _, pool in pairs(self._pool0) do iter(pool) end
end
--- Subscribe on connection's [[OnInputData]] signal
-- @tparam Connection connection Mobile/HMI connection
function mt.__index:AddConnection(connection)
local this = self
self._pool0[connection] = { }
self._pool1[connection] = { }
self._pool2[connection] = { }
self._pool3[connection] = { }
connection:OnConnected(function (self)
if this.preEventHandler then
this.preEventHandler(events.connectedEvent)
end
local exp = this:GetHandler(self, events.connectedEvent)
if exp then
exp.occurences = exp.occurences + 1
exp:Action()
this:validateAll()
end
if this.postEventHandler then
this.postEventHandler(events.connectedEvent)
end
end)
connection:OnDisconnected(function (self)
if this.preEventHandler then
this.preEventHandler(events.disconnectedEvent)
end
local exp = this:GetHandler(self, events.disconnectedEvent)
if exp then
exp.occurences = exp.occurences + 1
exp:Action()
this:validateAll()
end
if this.postEventHandler then
this.postEventHandler(events.disconnectedEvent)
end
end)
connection:OnInputData(function (connection, data)
this:RaiseEvent(connection, data)
end)
end
--- Raise event
-- @tparam Connection connection Mobile/HMI connection
-- @tparam table data Data for rise event
function mt.__index:RaiseEvent(connection, data)
if self.preEventHandler and data then
self.preEventHandler(data)
end
local exp = self:FindHandler(connection, data)
if exp then
exp.occurences = exp.occurences + 1
if data then
if exp.verifyData then
for _, verifyFunc in pairs(exp.verifyData) do
verifyFunc(exp, data)
if (config.checkAllValidations == false) and (exp.isAtLeastOneFail == true) then
break
end
end
end
exp:Action(data)
end
self:validateAll()
end
if self.postEventHandler then
self.postEventHandler(data)
end
end
--- Add event with expectation to pools
-- @tparam Connection connection Mobile/HMI connection
-- @tparam Event event Event to be addded
-- @tparam Expectation expectation Expectation for added event
function mt.__index:AddEvent(connection, event, expectation)
if event.level == 3 then
self._pool3[connection][event] = expectation
elseif event.level == 2 then
self._pool2[connection][event] = expectation
elseif event.level == 1 then
self._pool1[connection][event] = expectation
elseif event.level == 0 then
self._pool0[connection][event] = expectation
end
end
--- Remove event with expectation from pools
-- @tparam Connection connection Mobile/HMI connection
-- @tparam Event event Event to be removed
function mt.__index:RemoveEvent(connection, event)
self._pool3[connection][event] = nil
self._pool2[connection][event] = nil
self._pool1[connection][event] = nil
self._pool0[connection][event] = nil
end
--- Remove all events with expectation from pools
function mt.__index:ClearEvents()
for connection, _ in pairs(self._pool3) do self._pool3[connection] = { } end
for connection, _ in pairs(self._pool2) do self._pool2[connection] = { } end
for connection, _ in pairs(self._pool1) do self._pool1[connection] = { } end
for connection, _ in pairs(self._pool0) do self._pool0[connection] = { } end
end
return Dispatcher
|
-- Load the test file.
dofile("./mods/utils/test.lua")
-- Now load the file for testing.
dofile("./mods/terragenitor/terragenitor.lua")
dofile("./mods/terragenitor/module.lua")
dofile("./mods/utils/blockedcache.lua")
dofile("./mods/utils/constants.lua")
dofile("./mods/utils/list.lua")
dofile("./mods/utils/noisemanager.lua")
test.start("Terragenitor")
test.run("basic", function()
local terragenitor = TerraGenitor:new()
terragenitor:init()
test.equals(true, terragenitor:is_initialized())
terragenitor:get_map(0, 0)
end)
test.run("default_value", function()
local terragenitor = TerraGenitor:new("default")
terragenitor:init()
test.equals(true, terragenitor:is_initialized())
local map = terragenitor:get_map(0, 0)
test.equals("default", map[0][0].value)
test.equals("default", map[15][15].value)
end)
test.run("function_module", function()
local terragenitor = TerraGenitor:new("default")
terragenitor:register(function(self, x, z, value, info, support)
info.changed = true
return "changed", info
end)
terragenitor:init()
test.equals(true, terragenitor:is_initialized())
local map = terragenitor:get_map(0, 0)
test.equals("changed", map[0][0].value)
test.equals(true, map[0][0].info.changed)
test.equals("changed", map[15][15].value)
test.equals(true, map[15][15].info.changed)
end)
test.run("function_modules", function()
local terragenitor = TerraGenitor:new("default")
terragenitor:register(function(self, x, z, value, info, support)
info.a = true
return "a", info
end)
terragenitor:register(function(self, x, z, value, info, support)
info.b = true
return value .. "b", info
end)
terragenitor:register(function(self, x, z, value, info, support)
info.c = true
return value, info
end)
terragenitor:init()
test.equals(true, terragenitor:is_initialized())
local map = terragenitor:get_map(0, 0)
test.equals("ab", map[0][0].value)
test.equals(true, map[0][0].info.a)
test.equals(true, map[0][0].info.b)
test.equals(true, map[0][0].info.c)
test.equals("ab", map[15][15].value)
test.equals(true, map[15][15].info.a)
test.equals(true, map[15][15].info.b)
test.equals(true, map[15][15].info.c)
end)
|
function ReadSpriteFromXML(xml)
assert(xml, "ERROR: ReadSpriteFromXML(xml) - xml is nil")
local name=xml.ReadStringByName("Name")
if not(name) then name="unnamed" end
local material=xml.ReadStringByName("Material")
local scale=xml.TryReadVec3ByName("Scale")
local pivot=xml.TryReadVec3ByName("Pivot")
if not(scale) then
scale=vec3(1,1,1)
end
local scalemult=xml.ReadNumberByName("ScaleMultiplier")
if scalemult then
scale=vec3(scale.x*scalemult, scale.y*scalemult, 1)
end
local sprite=CreateSprite(material, scale, pivot)
if name then
sprite.Name=name
end
local position=xml.ReadVec3ByName("Position")
if position then
sprite.Position=position
end
local red,green,blue,alpha = xml.ReadNumbersByName("Color")
if alpha then
sprite.Color=vec4(red, green, blue, alpha)
end
local FPS=xml.ReadNumberByName("AnimationFPS")
local Animation=false
if FPS then
Animation=StartPeriodicCall((1/FPS),function()
sprite.Frame=sprite.Frame+1
end)
end
if Animation then
return sprite, Animation
else
return sprite
end
end
|
-- Cow by sirrobzeroone, then Krupnov Pavel, then TenPlus1. Flower cow by DrPlamsa
mobs:register_mob("flower_cow:flower_cow", {
type = "animal",
passive = false,
attack_type = "dogfight",
attack_npcs = false,
reach = 2,
damage = 4,
hp_min = 5,
hp_max = 20,
armor = 200,
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.2, 0.4},
visual = "mesh",
mesh = "mobs_cow.b3d",
textures = {
{"flower_cow.png"},
{"flower_cow2.png"},
},
makes_footstep_sound = true,
sounds = {
random = "mobs_cow",
},
walk_velocity = 1,
run_velocity = 2,
jump = true,
jump_height = 6,
pushable = true,
drops = {
{name = "mobs:meat_raw", chance = 1, min = 1, max = 3},
{name = "mobs:leather", chance = 1, min = 0, max = 2},
{name = "flowers:rose", chance = 1, min = 0, max = 2},
{name = "flowers:tulip", chance = 1, min = 0, max = 2},
{name = "flowers:dandelion_yellow", chance = 1, min = 0, max = 2},
{name = "flowers:geranium", chance = 1, min = 0, max = 2},
{name = "flowers:viola", chance = 1, min = 0, max = 2},
{name = "flowers:dandelion_white", chance = 1, min = 0, max = 2},
},
water_damage = 0,
lava_damage = 5,
light_damage = 0,
animation = {
stand_start = 0,
stand_end = 30,
stand_speed = 20,
stand1_start = 35,
stand1_end = 75,
stand1_speed = 20,
walk_start = 85,
walk_end = 114,
walk_speed = 20,
run_start = 120,
run_end = 140,
run_speed = 30,
punch_start = 145,
punch_end = 160,
punch_speed = 20,
die_start = 165,
die_end = 185,
die_speed = 10,
die_loop = false,
},
follow = {
"default:grass_1", "bonemeal:mulch", "bonemeal:bonemeal", "bonemeal:fertiliser"
},
view_range = 8,
replace_rate = 1,
replace_what = {
{"air", "default:grass_1", 0},
{"air", "default:grass_2", 0},
{"air", "default:grass_3", 0},
{"air", "default:grass_4", 0},
{"air", "default:grass_5", 0},
{"group:grass", "flowers:rose", 0},
{"group:grass", "flowers:tulip", 0},
{"group:grass", "flowers:dandelion_yellow", 0},
{"group:grass", "flowers:geranium", 0},
{"group:grass", "flowers:viola", 0},
{"group:grass", "flowers:dandelion_white", 0},
{"default:dirt", "default:dirt_with_grass", -1},
},
stay_near = {{"farming:straw", "farming:jackolantern_on"}, 5},
fear_height = 2,
on_rightclick = function(self, clicker)
-- feed or tame
if mobs:feed_tame(self, clicker, 8, true, true) then
-- if fed 7x wheat or grass then cow can be milked again
if self.food and self.food > 6 then
self.gotten = false
end
return
end
if mobs:protect(self, clicker) then return end
if mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) then return end
local tool = clicker:get_wielded_item()
local name = clicker:get_player_name()
-- milk cow with empty bucket
if tool:get_name() == "bucket:bucket_empty" then
--if self.gotten == true
if self.child == true then
return
end
if self.gotten == true then
minetest.chat_send_player(name,
"Flower cow already milked!")
return
end
local inv = clicker:get_inventory()
tool:take_item()
clicker:set_wielded_item(tool)
if inv:room_for_item("main", {name = "mobs:bucket_milk"}) then
clicker:get_inventory():add_item("main", "mobs:bucket_milk")
else
local pos = self.object:get_pos()
pos.y = pos.y + 0.5
minetest.add_item(pos, {name = "mobs:bucket_milk"})
end
self.gotten = true -- milked
return
end
end,
on_replace = function(self, pos, oldnode, newnode)
self.food = (self.food or 0) + 1
-- if cow replaces 8x grass then it can be milked again
if self.food >= 8 then
self.food = 0
self.gotten = false
end
-- Prevent a cow from producing grass on top of air (floating), or stone, or whatever
local myPos = self.object:get_pos()
myPos.y = myPos.y - 1.0
local myNode = minetest.get_node(myPos)
return (myNode.name == "default:dirt_with_grass") or (myNode.name == "default:dirt")
end,
})
if not mobs.custom_spawn_animal then
mobs:spawn({
name = "flower_cow:flower_cow",
nodes = {"default:dirt_with_grass", "ethereal:green_dirt"},
neighbors = {"group:grass"},
min_light = 14,
interval = 60,
chance = 80000, -- 15000
min_height = 5,
max_height = 200,
day_toggle = true,
})
end
-- Craft the flower cow from a cow and a flower
minetest.register_craft({
type = "shapeless",
output = "flower_cow:flower_cow",
recipe = {"group:flower", "mobs_animal:cow"}
})
-- Craft the flower cow from a tamed cow and a flower
minetest.register_craft({
type = "shapeless",
output = "flower_cow:flower_cow",
recipe = {"group:flower", "mobs_animal:cow_set"}
})
mobs:register_egg("flower_cow:flower_cow", "Flower cow", "flower_cow_inv.png")
|
if (SERVER) then
AddCSLuaFile()
end
--mk2
sound.Add({
name="weapon_mk2.Explode",
volume = 1.0,
sound = "weapons/mk2/mk2_detonate_01.wav",
level = 160, --how loud are grenades?
channel = CHAN_STATIC
})
sound.Add({
name="Weapon_mk2.Pin",
volume = 1.0,
sound = "weapons/mk2/handling/mk2_pullpin.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.Throw",
volume = 1.0,
sound = "weapons/mk2/handling/mk2_throw.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.PinPull",
volume = 1.0,
sound = "weapons/mk2/handling/mk2_pinpull.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.SpoonEject",
volume = 1.0,
sound = "weapons/mk2/handling/mk2_spooneject.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.LeftArmMovement",
volume = 1.0,
sound = "weapons/mk2/handling/mk2_armdraw.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.ArmDraw",
volume = 0.3,
sound = "weapons/mk2/handling/mk2_armdraw.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.ArmThrow",
volume = 0.45,
sound = "weapons/mk2/handling/mk2_throw_01.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.Roll",
volume = 1,
sound = "weapons/mk2/roll.wav",
level = 65,
channel = CHAN_ITEM
})
sound.Add({
name="Weapon_mk2.Bounce",
volume = 0.5,
pitch={98,102},
sound = "weapons/mk2/mk2_bounce_01.wav",
level = 80,
channel = CHAN_ITEM
})
|
-----------------------------------
-- Area: Yhoator Jungle
-- NPC: Treasure Casket
-----------------------------------
require("scripts/globals/caskets")
-----------------------------------
function onTrigger(player, npc)
tpz.caskets.onTrigger(player, npc)
end
function onTrade(player, npc, trade)
tpz.caskets.onTrade(player, npc, trade)
end
function onEventUpdate(player, csid, option)
end
function onEventFinish(player, csid, option)
tpz.caskets.onEventFinish(player, csid, option)
end
|
GridBackground = class("GridBackground")
function GridBackground:initialize()
self.time = math.random(0, 10)
self.columns = 32
self.rows = 32
self.width = 3000
self.height = 2000
self.hue = 0
self.saturation = 100
self.lightness = 40
end
function GridBackground:update(dt)
self.time = self.time + dt
if self.hue >= 360 then
self.hue = 0
end
self.hue = self.hue + dt*2
end
function GridBackground:draw()
local zoom = math.abs(math.cos(self.time/16))*(1/2) + 2
local rotation = math.sin(self.time/100)*math.pi
local r, g, b = husl.husl_to_rgb(self.hue, self.saturation, self.lightness)
local alpha = math.abs(math.cos(self.time/2.5))*1
alpha = math.max(math.min(alpha, 200), 64)
love.graphics.push()
love.graphics.setLineWidth(1)
love.graphics.setColor(r*1, g*1, b*1, alpha)
love.graphics.scale(zoom)
love.graphics.rotate(rotation)
love.graphics.translate(-self.width/2, -self.height/2)
local xStep = self.width/self.columns
local yStep = self.height/self.rows
for x=0, self.width, xStep do
love.graphics.line(x, 0, x, self.height)
end
for y=0, self.height, yStep do
love.graphics.line(0, y, self.width, y)
end
love.graphics.pop()
love.graphics.setColor(1, 1, 1, 1)
end
|
args = {...}
if #args ~= 5 then
print("Usage: <command> <sensor_position> <redstone_position> <accesslevel> <group> <url>")
return
end
-- Vars set by command params
local sensor_position = args[1]
local redstone_position = args[2]
local accesslevel = tonumber(args[3])
local group = args[4]
-- Advanced settings
local sensor = peripheral.wrap(sensor_position)
local url = args[5]
local version = "1.3"
local redstone_closedstate = true
local redstone_openstate = false
local delay = 3
local headers = {
["User-agent"] = "DoorAPI Browser v" .. version
}
local info = {
["ID"] = os.getComputerID(),
["Rednet"] = tostring(rednet.isOpen()),
["AccessLevel"] = accesslevel,
["Group/Table"] = group,
["Sensor position"] = sensor_position,
["Redstone position"] = redstone_position
}
local group_cache = {}
-- Functions
function setTextColor(color_code)
if term.isColor() then
term.setTextColor(color_code)
end
end
function startupText()
setTextColor(32)
print("Starting DoorAPI v" .. version)
print("")
setTextColor(16)
print("--- [INFO] ---")
print("")
setTextColor(1)
for k, v in pairs(info) do
print(k .. ": " .. v)
end
print("")
setTextColor(16)
print("--- [END INFO] ---")
print("")
setTextColor(16384)
end
function connectToDatabase(player, group)
responce = 0
if accesslevel ~= 0 then
request = http.get(url .. "?player=" .. player["name"] .. "&group=" .. group, headers)
responce = tonumber(request.readAll())
end
if type(responce) == "number" then
group_cache[player["name"]] = responce
return responce
else
print("[Error] Repsonce: " .. request.readAll())
return 0
end
end
function listenForPlayer()
print("Listening for players...")
while true do
redstone.setOutput(redstone_position, redstone_closedstate)
players = sensor.getPlayers()
for _, player in pairs(players) do
responce = 0
if type(group_cache[player["name"]]) == "nil" then
responce = connectToDatabase(player, group)
else
responce = group_cache[player["name"]]
end
if responce >= accesslevel then
redstone.setOutput(redstone_position, redstone_openstate)
sleep(delay)
end
end
end
end
-- Load functions
startupText()
listenForPlayer()
|
local MQTT = require("mqtt_library")
local lapp = require("pl.lapp")
local random = require("random")
local utility = require("utility")
local lapp = require("pl.lapp")
local msg = ""
local msg_count = 0
local LOG_RATE = 5
local LOG_RATE_IN_MILLIS = LOG_RATE * 1000
local args = lapp [[
Publish a message to a specified MQTT topic
-d,--debug Verbose console logging
-H,--host (default mosquitto) MQTT server hostname
-p,--port (default 1883) MQTT server port number
-t,--topic (default root) Topic on which to publish
-r,--rate (default 100000) Rate msg/sec
]]
local id = "publisher_" .. random.randomNum(10)
print("[" .. id .. "]")
local mqtt_client = MQTT.client.create(args.host, args.port)
mqtt_client:connect(id)
local next_log_time = utility.get_time_in_millis() + LOG_RATE_IN_MILLIS
while true do
if next_log_time < utility.get_time_in_millis() then
local rate = msg_count / LOG_RATE;
print("Sent " .. rate .. " msg/s")
msg_count = 0
next_log_time = utility.get_time_in_millis() + LOG_RATE_IN_MILLIS
end
mqtt_client:publish(args.topic, "mqtt")
msg_count = msg_count + 1
socket.sleep(1.0/args.rate) -- seconds
end
os.exit(0) |
require("moonsc").import_tags()
-- Test that each onexit handler is a separate block.
-- The <send> of event1 will cause an error but
-- the increment to var1 should happen anyways
return _scxml{
_datamodel{ _data{ id="var1", expr="1" }},
_state{ id="s0",
_onexit{ _send{ target="", event="event1" }}, -- illegal target
_onexit{ _assign{ location="var1", expr="var1+1" }},
_transition{ target="s1" },
},
_state{ id="s1",
_transition{ cond="var1==2", target="pass" },
_transition{ target="fail" },
},
_final{id='pass'},
_final{id='fail'},
}
|
local crypt = require "sys.crypt"
local testaux = require "testaux"
local P = require "print"
return function()
---------------------test hamc
local hmac_key = "test"
local hmac_body = "helloworld"
local res = crypt.hmac(hmac_key, hmac_body)
print(string.format("hmac key:%s body:%s, res:", hmac_key, hmac_body))
P.hex(hmac_body)
P.hex(res)
---------------------test aes
local aes1_key = "lilei"
local aes1_body = "hello"
local aes2_key = "hanmeimei"
local aes2_body = "1234567891011121314151612345678910111213141516"
local aes1_encode = crypt.aesencode(aes1_key, aes1_body)
local aes2_encode = crypt.aesencode(aes2_key, aes2_body)
local aes1_decode = crypt.aesdecode(aes1_key, aes1_encode)
local aes2_decode = crypt.aesdecode(aes2_key, aes2_encode)
testaux.asserteq(aes1_decode, aes1_body, "aes test decode success")
testaux.asserteq(aes2_decode, aes2_body, "aes test decode success")
local incorrect = crypt.aesdecode(aes2_key, aes1_encode)
testaux.assertneq(incorrect, aes1_body, "aes test decode fail")
local incorrect = crypt.aesdecode("adsafdsafdsafds", aes1_encode)
testaux.assertneq(incorrect, aes1_body, "aes test decode fail")
local incorrect = crypt.aesdecode("fdsafdsafdsafdadfsa", aes2_encode)
testaux.assertneq(incorrect, aes2_body, "aes test decode fail")
--test dirty data defend
crypt.aesdecode("fdsafdsafdsafdsafda", aes2_body)
----------------------test base64
local plain = "aGVsbG8sIG15IGZyaWVuZCwgeW91IGtvbncgaSBkb24ndCBnb29kIGF0IGNyeX"
local e1 = crypt.base64encode(plain)
local d1 = crypt.base64decode(e1)
testaux.asserteq(d1, plain, "base64 test encode/decode success")
end
|
local string = require"luv.string"
local type, pairs, ipairs = type, pairs, ipairs
local Object = require"luv.oop".Object
local fs = require"luv.fs"
module(...)
local Png = Object:extend{
__tag = .....".Png";
init = function (self, path)
end;
}
local Gif = Object:extend{
__tag = .....".Gif";
init = function (self, path)
end;
}
local Jpeg = Object:extend{
__tag = .....".Gif";
init = function (self, path)
end;
}
local function detectFormat (filepath)
local signatures = {
png = string.char(137, 80, 78, 71, 13, 10, 26, 10);
gif = {"GIF87a";"GIF89a"};
jpeg = string.char(0xFF, 0xD8);
}
local data = fs.File(filepath):openReadAndClose"*a"
for format, signs in pairs(signatures) do
if "table" == type(signs) then
for _, sign in ipairs(signs) do
if data:slice(1, #sign) == sign then
return format
end
end
elseif data:slice(1, #signs) == signs then
return format
end
end
end
return {detectFormat=detectFormat}
|
local helpers = require("test.functional.helpers")(after_each)
local eq, execute, funcs = helpers.eq, helpers.execute, helpers.funcs
local ok = helpers.ok
local clear = helpers.clear
describe(":edit", function()
before_each(function()
clear()
end)
it("without arguments does not restart :terminal buffer", function()
execute("terminal")
helpers.feed([[<C-\><C-N>]])
local bufname_before = funcs.bufname("%")
local bufnr_before = funcs.bufnr("%")
helpers.ok(nil ~= string.find(bufname_before, "^term://")) -- sanity
execute("edit")
local bufname_after = funcs.bufname("%")
local bufnr_after = funcs.bufnr("%")
ok(funcs.line('$') > 1)
eq(bufname_before, bufname_after)
eq(bufnr_before, bufnr_after)
end)
end)
|
local console = require("console")
resource = arg[1] or "/data/ATL03/ATL03_20181017222812_02950102_003_01.h5"
dataset = arg[2] or "/gt2l/heights/h_ph"
col = tonumber(arg[3]) or 0
startrow = tonumber(arg[4]) or 13665185
numrows = tonumber(arg[5]) or 89624
dataset_file = arg[6] or dataset:sub(string.find(dataset, "/[^/]*$") + 1)
file_writer = core.writer(core.file(core.WRITER, core.BINARY, dataset_file..".bin", core.FLUSHED), "h5rawq")
file_reader = core.reader(h5.dataset(core.READER, "file://"..resource, dataset, 0, true, core.DYNAMIC, col, startrow, numrows), "h5rawq")
file_reader:waiton()
file_reader:destroy()
file_writer:waiton()
file_writer:destroy()
|
-- inspired by https://github.com/simov/slugify
local gsub = require('string').gsub
local gmatch = require('string').gmatch
local trim = require('string-trim')
local function slugify(string, replacement)
if replacement == nil then
replacement = '-'
end
local result = ''
-- loop through each word or number
for word in gmatch(string, "(%w+)") do
result = result .. word .. replacement
end
-- remove trailing separator
result = gsub(result, replacement .. "$", '')
return result:lower()
end
return slugify |
-- Prosody IM
-- Copyright (C) 2010 Matthew Wild
-- Copyright (C) 2010 Paul Aurich
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--
-- TODO: I feel a fair amount of this logic should be integrated into Luasec,
-- so that everyone isn't re-inventing the wheel. Dependencies on
-- IDN libraries complicate that.
-- [TLS-CERTS] - http://tools.ietf.org/html/rfc6125
-- [XMPP-CORE] - http://tools.ietf.org/html/rfc6120
-- [SRV-ID] - http://tools.ietf.org/html/rfc4985
-- [IDNA] - http://tools.ietf.org/html/rfc5890
-- [LDAP] - http://tools.ietf.org/html/rfc4519
-- [PKIX] - http://tools.ietf.org/html/rfc5280
local nameprep = require "util.encodings".stringprep.nameprep;
local idna_to_ascii = require "util.encodings".idna.to_ascii;
local base64 = require "util.encodings".base64;
local log = require "util.logger".init("x509");
local s_format = string.format;
local _ENV = nil;
-- luacheck: std none
local oid_commonname = "2.5.4.3"; -- [LDAP] 2.3
local oid_subjectaltname = "2.5.29.17"; -- [PKIX] 4.2.1.6
local oid_xmppaddr = "1.3.6.1.5.5.7.8.5"; -- [XMPP-CORE]
local oid_dnssrv = "1.3.6.1.5.5.7.8.7"; -- [SRV-ID]
-- Compare a hostname (possibly international) with asserted names
-- extracted from a certificate.
-- This function follows the rules laid out in
-- sections 6.4.1 and 6.4.2 of [TLS-CERTS]
--
-- A wildcard ("*") all by itself is allowed only as the left-most label
local function compare_dnsname(host, asserted_names)
-- TODO: Sufficient normalization? Review relevant specs.
local norm_host = idna_to_ascii(host)
if norm_host == nil then
log("info", "Host %s failed IDNA ToASCII operation", host)
return false
end
norm_host = norm_host:lower()
local host_chopped = norm_host:gsub("^[^.]+%.", "") -- everything after the first label
for i=1,#asserted_names do
local name = asserted_names[i]
if norm_host == name:lower() then
log("debug", "Cert dNSName %s matched hostname", name);
return true
end
-- Allow the left most label to be a "*"
if name:match("^%*%.") then
local rest_name = name:gsub("^[^.]+%.", "")
if host_chopped == rest_name:lower() then
log("debug", "Cert dNSName %s matched hostname", name);
return true
end
end
end
return false
end
-- Compare an XMPP domain name with the asserted id-on-xmppAddr
-- identities extracted from a certificate. Both are UTF8 strings.
--
-- Per [XMPP-CORE], matches against asserted identities don't include
-- wildcards, so we just do a normalize on both and then a string comparison
--
-- TODO: Support for full JIDs?
local function compare_xmppaddr(host, asserted_names)
local norm_host = nameprep(host)
for i=1,#asserted_names do
local name = asserted_names[i]
-- We only want to match against bare domains right now, not
-- those crazy full-er JIDs.
if name:match("[@/]") then
log("debug", "Ignoring xmppAddr %s because it's not a bare domain", name)
else
local norm_name = nameprep(name)
if norm_name == nil then
log("info", "Ignoring xmppAddr %s, failed nameprep!", name)
else
if norm_host == norm_name then
log("debug", "Cert xmppAddr %s matched hostname", name)
return true
end
end
end
end
return false
end
-- Compare a host + service against the asserted id-on-dnsSRV (SRV-ID)
-- identities extracted from a certificate.
--
-- Per [SRV-ID], the asserted identities will be encoded in ASCII via ToASCII.
-- Comparison is done case-insensitively, and a wildcard ("*") all by itself
-- is allowed only as the left-most non-service label.
local function compare_srvname(host, service, asserted_names)
local norm_host = idna_to_ascii(host)
if norm_host == nil then
log("info", "Host %s failed IDNA ToASCII operation", host);
return false
end
-- Service names start with a "_"
if service:match("^_") == nil then service = "_"..service end
norm_host = norm_host:lower();
local host_chopped = norm_host:gsub("^[^.]+%.", "") -- everything after the first label
for i=1,#asserted_names do
local asserted_service, name = asserted_names[i]:match("^(_[^.]+)%.(.*)");
if service == asserted_service then
if norm_host == name:lower() then
log("debug", "Cert SRVName %s matched hostname", name);
return true;
end
-- Allow the left most label to be a "*"
if name:match("^%*%.") then
local rest_name = name:gsub("^[^.]+%.", "")
if host_chopped == rest_name:lower() then
log("debug", "Cert SRVName %s matched hostname", name)
return true
end
end
if norm_host == name:lower() then
log("debug", "Cert SRVName %s matched hostname", name);
return true
end
end
end
return false
end
local function verify_identity(host, service, cert)
if cert.setencode then
cert:setencode("utf8");
end
local ext = cert:extensions()
if ext[oid_subjectaltname] then
local sans = ext[oid_subjectaltname];
-- Per [TLS-CERTS] 6.3, 6.4.4, "a client MUST NOT seek a match for a
-- reference identifier if the presented identifiers include a DNS-ID
-- SRV-ID, URI-ID, or any application-specific identifier types"
local had_supported_altnames = false
if sans[oid_xmppaddr] then
had_supported_altnames = true
if service == "_xmpp-client" or service == "_xmpp-server" then
if compare_xmppaddr(host, sans[oid_xmppaddr]) then return true end
end
end
if sans[oid_dnssrv] then
had_supported_altnames = true
-- Only check srvNames if the caller specified a service
if service and compare_srvname(host, service, sans[oid_dnssrv]) then return true end
end
if sans["dNSName"] then
had_supported_altnames = true
if compare_dnsname(host, sans["dNSName"]) then return true end
end
-- We don't need URIs, but [TLS-CERTS] is clear.
if sans["uniformResourceIdentifier"] then
had_supported_altnames = true
end
if had_supported_altnames then return false end
end
-- Extract a common name from the certificate, and check it as if it were
-- a dNSName subjectAltName (wildcards may apply for, and receive,
-- cat treats)
--
-- Per [TLS-CERTS] 1.8, a CN-ID is the Common Name from a cert subject
-- which has one and only one Common Name
local subject = cert:subject()
local cn = nil
for i=1,#subject do
local dn = subject[i]
if dn["oid"] == oid_commonname then
if cn then
log("info", "Certificate has multiple common names")
return false
end
cn = dn["value"];
end
end
if cn then
-- Per [TLS-CERTS] 6.4.4, follow the comparison rules for dNSName SANs.
return compare_dnsname(host, { cn })
end
-- If all else fails, well, why should we be any different?
return false
end
local pat = "%-%-%-%-%-BEGIN ([A-Z ]+)%-%-%-%-%-\r?\n"..
"([0-9A-Za-z+/=\r\n]*)\r?\n%-%-%-%-%-END %1%-%-%-%-%-";
local function pem2der(pem)
local typ, data = pem:match(pat);
if typ and data then
return base64.decode(data), typ;
end
end
local wrap = ('.'):rep(64);
local envelope = "-----BEGIN %s-----\n%s\n-----END %s-----\n"
local function der2pem(data, typ)
typ = typ and typ:upper() or "CERTIFICATE";
data = base64.encode(data);
return s_format(envelope, typ, data:gsub(wrap, '%0\n', (#data-1)/64), typ);
end
return {
verify_identity = verify_identity;
pem2der = pem2der;
der2pem = der2pem;
};
|
require("isolater/widget/privateRoomCustomView/customParamSetViewBase");
local customParamSetView = require(ViewPath .. "isolater/privateRoomCustomView/customParamSetView");
local CustomParamSetView = class(CustomParamSetViewBase,false);
local h_index = 0;
local getIndex = function(self)
h_index = h_index + 1;
return h_index;
end
CustomParamSetView.s_controls =
{
baseChipTitle = getIndex();
baseChipGroup = getIndex();
customBaseChipRd = getIndex();
customBaseChipEidt = getIndex();
limitEidt = getIndex();
limitTitle = getIndex();
limitUnit = getIndex();
baseChipTypeGroup = getIndex();
};
CustomParamSetView.s_maxMoney = 99999999; -- 最大自定义数量
CustomParamSetView.s_maxBaseChipItem = 4;--配置的底注最多4条选项
CustomParamSetView.s_minBaseChip = 1;--自定义底注最低为1
CustomParamSetView.s_baseChipCondition = 1/3;--自定义底注最大为携带金币的1/CustomParamSetView.s_requireMoneyCondition,默认1/3
CustomParamSetView.s_requireMoneyCondition = 3;--入场限制为底注的3倍或2W,两者取最大值
CustomParamSetView.s_requireCrystalCondition = 1;--入场限制为底注的1倍或0,两者取最大值
CustomParamSetView.s_minRequireMoney = 20000;--入场限制为底注的3倍或2W,两者取最大值
CustomParamSetView.s_minRequireCrystal = 0;--入场限制为底注的3倍或200,两者取最大值
CustomParamSetView.ctor = function(self,data)
super(self, data);
end
CustomParamSetView.initView = function(self,data)
RadioButton.setDefaultImages({"hall/common/checkbox_uncheck.png","hall/common/checkbox_checked.png"});
self.m_root = SceneLoader.load(customParamSetView);
if self.m_root then
GameLayer.addChild(self,self.m_root);
end
self.m_controlsMap = {};
GameLayer.addEventListeners(self);
self.m_chipEditor = self:findViewById(CustomParamSetView.s_controls.customBaseChipEidt);
self.m_limitEditor = self:findViewById(CustomParamSetView.s_controls.limitEidt);
self.m_chipEditor:setInputMode(kEditBoxInputModeNumeric);
self.m_limitEditor:setInputMode(kEditBoxInputModeNumeric);
self.m_chipEditor:setEventTouch(self, self.onChipEditorEventTouch);
self.m_limitEditor:setEventTouch(self, self.onLimitEditorEventTouch);
self.m_defaultBaseChipIndex = 1;
self.m_defaultConfigIndex = 1;
self.m_data = data;
self:_initBaseChipTypeList(data.configList);
-- 兼容马股
self.m_baseChipDefaultData = {};
self:resetParamData();
end
CustomParamSetView.getCustomParamData = function(self)
local baseChip = number.valueOf(self.m_customParamData.baseChip);
local requireMoney = number.valueOf(self.m_customParamData.requireMoney);
local tableType = number.valueOf(self.m_customParamData.tableType);
-- 进场限制不定于底注
if requireMoney < baseChip then
self.m_customParamData.requireMoney = baseChip;
requireMoney = baseChip;
end
local money = self:_getMoneyByTableType(tableType);
local moneyMin = self:_getMinRequireMoneyByTableType(tableType)
if baseChip <= 0 then
Toast.getInstance():showText(kTextChoiceToNote,50,30,kAlginLeft,"",26,250,210,70);
return false,self.m_customParamData;
elseif moneyMin > money then
local unitStr = self:findViewById(self.s_controls.limitUnit):getText();
local str = tostring(moneyMin) or "";
Toast.getInstance():showText(GameString.get("kTextPrivateRoomCreateMoneyTips")..str..unitStr,50,30,kAlginLeft,"",26,250,210,70);
return false,self.m_customParamData;
elseif requireMoney > money then
local unitStr = self:findViewById(self.s_controls.limitUnit):getText();
Toast.getInstance():showText(GameString.get("kTextRequireMoneyTooBigTips")..unitStr,50,30,kAlginLeft,"",26,250,210,70);
return false,self.m_customParamData;
end
return true,self.m_customParamData;
end
CustomParamSetView.resetParamData = function(self,data)
self.m_customParamData = {};
data = table.verify(data);
local configList = table.verify(self.m_data.configList);
--add
local indexType = 1;
local configFirst = table.verify(configList[indexType])
local tableType = number.valueOf(configFirst.tableType);
if data.tableType then
for k, v in ipairs(configList) do
v = table.verify(v);
if number.valueOf(v.tableType) == number.valueOf(data.tableType) then
indexType = k;
tableType = number.valueOf(data.tableType);
break;
end
end
end
local ownMoney = self:_getMoneyByTableType(tableType);
local codition = self:_getRequireMoneyConditionByTableType(tableType);
self.m_minBaseChip = CustomParamSetView.s_minBaseChip;
self.m_maxBaseChip = math.floor(ownMoney/codition);
self.m_maxBaseChip = math.max(self.m_maxBaseChip, self.m_minBaseChip);
self.m_defaultConfigIndex = indexType;
local config = configList[self.m_defaultConfigIndex];
self:findViewById(CustomParamSetView.s_controls.baseChipTypeGroup):setSelected(indexType);
self:_initBaseChipRiadioBtns(config.baseChip);
self:findViewById(self.s_controls.limitUnit):setText(config.name);
local baseChipDefaultData = config.baseChip;
local baseChip = number.valueOf(data.baseChip);
local index;
local customBaseChip = baseChip;
if baseChip > 0 then
for k,v in ipairs(baseChipDefaultData) do
if number.valueOf(v) == baseChip then
index = k;
break;
end
end
if not index then
index = 1;
else
index = index + 1; --自定义的默认为1,其余的按顺序加1
if index > (CustomParamSetView.s_maxBaseChipItem + 1) then
index = 1;
else
customBaseChip = 0;
end
end
else
index = 2;
end
self:findViewById(CustomParamSetView.s_controls.baseChipGroup):setSelected(index);
self:_resetLimitEditor();
self:_resetChipEditor();
local requireMoney = number.valueOf(data.requireMoney);
if requireMoney > 0 then
self.m_limitEditor:setText(requireMoney);
end
if customBaseChip > 0 then
self.m_chipEditor:setText(customBaseChip);
end
self.m_defaultBaseChipIndex = index;
self.m_customParamData.requireMoney = requireMoney;
self.m_customParamData.tableType = tableType;
self:_getBaseChip(index);
self:_checkLimit();
end
CustomParamSetView.onLimitEditChanged = function(self)
local et = self.m_limitEditor;
local limitStr = string.trim(et:getText());
local limit = tonumber(limitStr) or 0;
limit, _ = math.floor(limit);
local baseChip = number.valueOf(self.m_customParamData.baseChip);
local tableType = number.valueOf(self.m_customParamData.tableType);
local num1 = self:_getRequireMoneyConditionByTableType(tableType);
local num2 = self:_getMinRequireMoneyByTableType(tableType);
local requireMoney = math.max(baseChip * num1, num2);
local ownMoney = self:_getMoneyByTableType(tableType);
local unitStr = self:findViewById(self.s_controls.limitUnit):getText();
if ownMoney >= requireMoney then
if limit > ownMoney then
Toast.getInstance():showText( GameString.get("kTextRequireMoneyTooBigTips")..unitStr ,50,30,kAlginLeft,"",26,250,210,70);
et:setText( ownMoney );
elseif limit < requireMoney then
et:setText(requireMoney);
local tips = self:_getLimitTipsStringByTableType(tableType, num1, num2, unitStr);
Toast.getInstance():showText(tips,50,30,kAlginLeft,"",26,250,210,70);
else
et:setText(limit.."");
end
else
if limit < requireMoney then
et:setText(requireMoney);
local tips = self:_getLimitTipsStringByTableType(tableType, num1, num2, unitStr);
Toast.getInstance():showText(tips,50,30,kAlginLeft,"",26,250,210,70);
else
et:setText(limit.."");
end
end
self:_getLimitData();
end
CustomParamSetView.onBaseChipEditChanged = function(self)
local et = self.m_chipEditor;
local limitStr = string.trim(et:getText());
local limit = tonumber(limitStr) or 0;
limit, _ = math.floor(limit);
local baseStr = "底注";
local baseChip = limit;
local unitStr = self:findViewById(self.s_controls.limitUnit):getText();
if limit > self.m_maxBaseChip then
baseChip = self.m_maxBaseChip;
et:setText(self.m_maxBaseChip .. "");
local tips = string.format("底注的范围限制为%s~%s%s!",self.m_minBaseChip,self.m_maxBaseChip, unitStr);
Toast.getInstance():showText(tips,50,30,kAlginLeft,"",26,250,210,70);
elseif limit >= self.m_minBaseChip and limit <= self.m_maxBaseChip then
et:setText(limit.."");
else
baseChip = self.m_minBaseChip;
et:setText(self.m_minBaseChip .. "");
local tips = string.format("底注的范围限制为%s~%s%s!",self.m_minBaseChip,self.m_maxBaseChip, unitStr);
Toast.getInstance():showText(tips,50,30,kAlginLeft,"",26,250,210,70);
end
self:findViewById(CustomParamSetView.s_controls.baseChipGroup):setSelected(1);
self:_getEditBaseChip();
self:_checkLimit();
end
CustomParamSetView.onBaseChipRadioGroupChange = function(self,curIndex,lastIndex)
kEffectPlayer:play(Effects.AudioButtonClick);
self:_getBaseChip(curIndex);
self:_checkLimit();
end
CustomParamSetView._checkLimit = function(self)
local tableType = number.valueOf(self.m_customParamData.tableType);
local condition = self:_getRequireMoneyConditionByTableType(tableType);
local num1 = number.valueOf(self.m_customParamData.baseChip) * condition;
local num2 = self:_getMinRequireMoneyByTableType(tableType);
local limit = math.max(num1,num2);
self.m_limitEditor:setText(limit .. "");
self:_getLimitData();
end
CustomParamSetView._resetChipEditor = function(self)
self.m_chipEditor:setText("");
self.m_chipEditor:setHintText(string.format("最高%s",ToolKit.skipMoneyEx4(self.m_maxBaseChip)), 215,171,127);
end
CustomParamSetView._resetLimitEditor = function(self)
self.m_limitEditor:setText("");
local tableType = number.valueOf(self.m_customParamData.tableType);
local codition = self:_getRequireMoneyConditionByTableType(tableType);
local min = self:_getMinRequireMoneyByTableType(tableType);
local tips = self:_getLimitHintByTableType(tableType, codition, min);
self.m_limitEditor:setHintText(tips, 215,171,127);
end
CustomParamSetView.onChipEditorEventTouch = function(self, finger_action, x, y, drawing_id_first, drawing_id_current)
local et = self.m_chipEditor;
if finger_action == kFingerDown then
local str = string.trim(et:getText());
local strNum = tonumber(str) or 0;
if strNum <= 0 then
self:_resetChipEditor();
end
end
et:onEventTouch(finger_action, x, y, drawing_id_first, drawing_id_current);
end
CustomParamSetView.onLimitEditorEventTouch = function(self, finger_action, x, y, drawing_id_first, drawing_id_current)
local et = self.m_limitEditor;
if finger_action == kFingerDown then
local str = string.trim(et:getText());
local strNum = tonumber(str) or 0;
if strNum <= 0 then
self:_resetLimitEditor();
end
end
et:onEventTouch(finger_action, x, y, drawing_id_first, drawing_id_current);
end
CustomParamSetView._getBaseChip = function(self,curIndex)
if curIndex == 1 then
self:_getEditBaseChip();
if self.m_customParamData.baseChip == 0 then
self.m_chipEditor:setText(1);
self.m_customParamData.baseChip = 1;
end
else
local baseChipGroup = self:findViewById(CustomParamSetView.s_controls.baseChipGroup);
if baseChipGroup then
local rdBtn = baseChipGroup:getButton(curIndex);
if rdBtn then
local name = rdBtn:getChildByName("name");
if name then
baseChip = number.valueOf(string.trim(name:getText()));
self.m_customParamData.baseChip = baseChip;
end
end
end
end
end
CustomParamSetView._getEditBaseChip = function(self)
local et = self.m_chipEditor;
local baseChip = number.valueOf(string.trim(et:getText()));
self.m_customParamData.baseChip = baseChip;
end
CustomParamSetView._initBaseChipRiadioBtns = function(self,baseChips)
baseChips = table.verify(baseChips);
local baseChipGroup = self:findViewById(CustomParamSetView.s_controls.baseChipGroup);
local customBaseChipRd = self:findViewById(CustomParamSetView.s_controls.customBaseChipRd);
customBaseChipRd:getParent():removeChild(customBaseChipRd);
baseChipGroup:removeAllChildren(true);
baseChipGroup:addChild(customBaseChipRd);
self.m_chipEditor:setPos(self.m_chipEditor:getPos()); -- fix a editor bug
local x = 0;
local space = 25;
local count = 0;
RadioButton.setDefaultImages({"hall/common/checkbox_uncheck.png","hall/common/checkbox_checked.png"});
for k,v in ipairs(baseChips) do
if number.valueOf(v) > 0 then
count = count + 1;
local rdBtn = new(RadioButton);
local name = UIFactory.createText(v, 32, 10, 10, kAlignLeft, 118,72,18);
local w_rd = rdBtn:getSize();
local w_name = name:getSize();
rdBtn:addChild(name);
name:setAlign(kAlignLeft);
name:setPos(w_rd + 10,0);
name:setName("name");
baseChipGroup:addChild(rdBtn);
rdBtn:setPos(x,0);
rdBtn:setAlign(kAlignLeft);
x = x + w_rd + w_name + 10 + space;
if count >= CustomParamSetView.s_maxBaseChipItem then
break;
end
end
end
RadioButton.setDefaultImages();
self.m_defaultBaseChipIndex = count >= 1 and 2 or 1;
customBaseChipRd:setPos(x,0);
end
CustomParamSetView._getLimitData = function(self)
local et = self.m_limitEditor;
local requireMoney = number.valueOf(string.trim(et:getText()));
self.m_customParamData.requireMoney = requireMoney;
end
CustomParamSetView._getBaseChipData = function(self)
local baseChipGroup = self:findViewById(CustomParamSetView.s_controls.baseChipGroup);
local result = baseChipGroup:getResult();
self:_getBaseChip(result);
end
CustomParamSetView._getMoneyByTableType = function(self, tableType)
if tableType == PrivateRoomConstant.PRIVATE_ROOM_TYPE_CRYSTAL then
return UserPropertyIsolater.getInstance():getCrystal();
else
return UserPropertyIsolater.getInstance():getMoney();
end
end
CustomParamSetView._getMinRequireMoneyByTableType = function(self, tableType)
if tableType == PrivateRoomConstant.PRIVATE_ROOM_TYPE_CRYSTAL then
local config = self.m_data.configList[self.m_defaultConfigIndex];
local limit = number.valueOf(config.intolimit);
return math.max(CustomParamSetView.s_minRequireCrystal, limit);
else
return CustomParamSetView.s_minRequireMoney;
end
end
CustomParamSetView._getRequireMoneyConditionByTableType = function(self, tableType)
if tableType == PrivateRoomConstant.PRIVATE_ROOM_TYPE_CRYSTAL then
return CustomParamSetView.s_requireCrystalCondition;
else
return CustomParamSetView.s_requireMoneyCondition;
end
end
CustomParamSetView._getLimitTipsStringByTableType = function(self, tableType, times, min, unit)
return string.format("入场门槛不得低于%s倍底注,且不得低于%s%s!", times, ToolKit.skipMoneyEx4(min), unit);
end
CustomParamSetView._getLimitHintByTableType = function(self, tableType, times, min)
return string.format("不得低于底注的%s倍及%s", times, ToolKit.skipMoneyEx4(min));
end
----------------------------------货币类型--------------------------------------------
CustomParamSetView._initBaseChipTypeList = function(self, data)
data = table.verify(data);
local baseChipGroup = self:findViewById(CustomParamSetView.s_controls.baseChipTypeGroup);
local x = 0;
local space = 25;
RadioButton.setDefaultImages({"hall/common/checkbox_uncheck.png","hall/common/checkbox_checked.png"});
for k,v in ipairs(data) do
if not table.isEmpty(v) then
local rdBtn = new(RadioButton);
local name = UIFactory.createText(v.name or "", 32, 10, 10, kAlignLeft, 118,72,18);
local w_rd = rdBtn:getSize();
local w_name = name:getSize();
rdBtn:addChild(name);
name:setAlign(kAlignLeft);
name:setPos(w_rd + 10,0);
name:setName("name");
baseChipGroup:addChild(rdBtn);
rdBtn:setPos(x,0);
rdBtn:setAlign(kAlignLeft);
x = x + w_rd + w_name + 10 + space;
end
end
if not table.isEmpty(data) then
baseChipGroup:setSelected(1);
end
RadioButton.setDefaultImages();
end
-- sub view callback
CustomParamSetView.onBaseChipTypeListItemClick = function(self, data, index)
if table.isEmpty(data) then
return ;
end
self:resetParamData({tableType = data.tableType});
end
CustomParamSetView.onBaseChipTypeRadioGroupChange = function(self,curIndex,lastIndex)
kEffectPlayer:play(Effects.AudioButtonClick);
local list = table.verify(self.m_data.configList);
local data = table.verify(list[curIndex]);
self:resetParamData({tableType = data.tableType});
end
CustomParamSetView.s_controlFuncMap =
{
[CustomParamSetView.s_controls.customBaseChipEidt] = CustomParamSetView.onBaseChipEditChanged;
[CustomParamSetView.s_controls.limitEidt] = CustomParamSetView.onLimitEditChanged;
[CustomParamSetView.s_controls.baseChipGroup] = CustomParamSetView.onBaseChipRadioGroupChange;
[CustomParamSetView.s_controls.baseChipTypeGroup] = CustomParamSetView.onBaseChipTypeRadioGroupChange;
};
CustomParamSetView.s_controlConfig =
{
[CustomParamSetView.s_controls.baseChipTitle] = {"baseChipTypeView","title"};
[CustomParamSetView.s_controls.baseChipGroup] = {"baseChipArea","baseChipGroup"};
[CustomParamSetView.s_controls.customBaseChipRd] = {"baseChipArea","baseChipGroup","customBaseChip"};
[CustomParamSetView.s_controls.customBaseChipEidt] = {"baseChipArea","baseChipGroup","customBaseChip","etBg","et"};
[CustomParamSetView.s_controls.limitEidt] = {"limitArea","editBglimit","et"};
[CustomParamSetView.s_controls.limitTitle] = {"limitArea","title"};
[CustomParamSetView.s_controls.limitUnit] = {"limitArea","editBglimit","Text2"};
[CustomParamSetView.s_controls.baseChipTypeGroup] = {"baseChipTypeView", "baseChipTypeGroup"};
};
return CustomParamSetView; |
local planes={
{ 0.0,0.0,-1.0,1.0 },
{ 0.0,0.0,1.0,1.0 },
{ 1.0,0.0,0.0,10.0 },
{ 0.0,-1.0,0.0,1.0 },
{ -1.0,0.0,-0.0,10.0 },
{ 0.0,1.0,0.0,1.0 },
}
local points={
{ 10.0, 1.0,-1.0 },
{ 10.0,-1.0,-1.0 },
{ -10.0,-1.0,-1.0 },
{ -10.0, 1.0,-1.0 },
{ 10.0, 1.0, 1.0 },
{ 10.0,-1.0, 1.0 },
{ -10.0,-1.0, 1.0 },
{ -10.0, 1.0, 1.0 },
}
local polygons = {
{ 0,1,2,3 },
{ 4,7,6,5 },
{ 0,4,5,1 },
{ 1,5,6,2 },
{ 2,6,7,3 },
{ 4,0,3,7 },
}
return {
planes = planes,
points = points,
polygons = polygons,
}
|
module("luci.controller.rebootschedule", package.seeall)
function index()
if not nixio.fs.access("/etc/config/rebootschedule") then
return
end
entry({"admin", "system", "rebootschedule"}, cbi("rebootschedule"), _("计划重启")).dependent = true
end
|
local _2afile_2a = "fnl/aniseed/setup.fnl"
local _2amodule_name_2a = "conjure.aniseed.setup"
local _2amodule_2a
do
package.loaded[_2amodule_name_2a] = {}
_2amodule_2a = package.loaded[_2amodule_name_2a]
end
local _2amodule_locals_2a
do
_2amodule_2a["aniseed/locals"] = {}
_2amodule_locals_2a = (_2amodule_2a)["aniseed/locals"]
end
local autoload = (require("conjure.aniseed.autoload")).autoload
local a, env, eval, nvim = autoload("conjure.aniseed.core"), autoload("conjure.aniseed.env"), autoload("conjure.aniseed.eval"), autoload("conjure.aniseed.nvim")
do end (_2amodule_locals_2a)["a"] = a
_2amodule_locals_2a["env"] = env
_2amodule_locals_2a["eval"] = eval
_2amodule_locals_2a["nvim"] = nvim
local function init()
if (1 == nvim.fn.has("nvim-0.7")) then
local function _1_(cmd)
local ok_3f, res = eval.str(cmd.args, {})
if ok_3f then
return nvim.echo(res)
else
return nvim.err_writeln(res)
end
end
nvim.create_user_command("AniseedEval", _1_, {nargs = 1})
local function _3_(cmd)
local code
local function _4_()
if ("" == cmd.args) then
return nvim.buf_get_name(nvim.get_current_buf())
else
return cmd.args
end
end
code = a.slurp(_4_())
if code then
local ok_3f, res = eval.str(code, {})
if ok_3f then
return nvim.echo(res)
else
return nvim.err_writeln(res)
end
else
return nvim.err_writeln(("File '" .. (cmd.args or "nil") .. "' not found"))
end
end
nvim.create_user_command("AniseedEvalFile", _3_, {nargs = "?", complete = "file"})
else
end
if nvim.g["aniseed#env"] then
return env.init(nvim.g["aniseed#env"])
else
return nil
end
end
_2amodule_2a["init"] = init
return _2amodule_2a
|
---@class Faction : zombie.characters.Faction
---@field private name String
---@field private owner String
---@field private tag String
---@field private tagColor ColorInfo
---@field private players ArrayList|Unknown
---@field public factions ArrayList|Unknown
Faction = {}
---@public
---@param arg0 IsoPlayer
---@return boolean
function Faction:isPlayerMember(arg0) end
---@public
---@param arg0 String
---@return void
function Faction:setTag(arg0) end
---@public
---@return ColorInfo
function Faction:getTagColor() end
---@public
---@param arg0 ByteBuffer
---@param arg1 int
---@return void
function Faction:load(arg0, arg1) end
---@public
---@return ArrayList|Unknown
function Faction:getPlayers() end
---@public
---@param arg0 String
---@return Faction
---@overload fun(arg0:IsoPlayer)
function Faction:getPlayerFaction(arg0) end
---@public
---@param arg0 IsoPlayer
---@return Faction
function Faction:getPlayerFaction(arg0) end
---@public
---@return String
function Faction:getOwner() end
---@public
---@param arg0 ByteBuffer
---@return void
function Faction:save(arg0) end
---@public
---@param arg0 String
---@return void
function Faction:addPlayer(arg0) end
---@public
---@return void
function Faction:removeFaction() end
---@public
---@param arg0 String
---@return void
function Faction:setOwner(arg0) end
---@public
---@return void
function Faction:syncFaction() end
---@public
---@return String
function Faction:getTag() end
---@public
---@param arg0 ColorInfo
---@return void
function Faction:setTagColor(arg0) end
---@public
---@param arg0 String
---@return Faction
function Faction:getFaction(arg0) end
---@public
---@param arg0 ByteBufferWriter
---@param arg1 boolean
---@return void
function Faction:writeToBuffer(arg0, arg1) end
---@public
---@param arg0 String
---@return void
function Faction:setName(arg0) end
---@public
---@param arg0 String
---@return boolean
function Faction:isOwner(arg0) end
---@public
---@param arg0 String
---@param arg1 String
---@return Faction
function Faction:createFaction(arg0, arg1) end
---@public
---@param arg0 String
---@return boolean
function Faction:tagExist(arg0) end
---@public
---@return boolean
function Faction:canCreateTag() end
---@public
---@param arg0 IsoPlayer
---@return boolean
function Faction:canCreateFaction(arg0) end
---@public
---@param arg0 String
---@return boolean
function Faction:factionExist(arg0) end
---@public
---@param arg0 String
---@return void
function Faction:removePlayer(arg0) end
---@public
---@param arg0 String
---@return boolean
---@overload fun(arg0:IsoPlayer)
function Faction:isAlreadyInFaction(arg0) end
---@public
---@param arg0 IsoPlayer
---@return boolean
function Faction:isAlreadyInFaction(arg0) end
---@public
---@param arg0 String
---@return boolean
function Faction:isMember(arg0) end
---@public
---@return ArrayList|Unknown
function Faction:getFactions() end
---@public
---@return String
function Faction:getName() end
|
AddCSLuaFile("shared.lua")
include('shared.lua')
/*-----------------------------------------------
*** Copyright (c) 2012-2018 by DrVrej, All rights reserved. ***
No parts of this code or any of its contents may be reproduced, copied, modified or adapted,
without the prior written consent of the author, unless otherwise indicated for stand-alone materials.
-----------------------------------------------*/
ENT.Model = {"models/zadkiel/tarantula.mdl"} -- The game will pick a random model from the table when the SNPC is spawned | Add as many as you want
ENT.StartHealth = 5000
ENT.HullType = HULL_HUMAN
ENT.SightDistance = 5000 -- How far it can see
ENT.MovementType = VJ_MOVETYPE_STATIONARY -- How does the SNPC move?
ENT.CanTurnWhileStationary = true -- If set to true, the SNPC will be able to turn while it's a stationary SNPC
ENT.PlayerFriendly = true
ENT.SightAngle = 180
ENT.HasDeathRagdoll = false
---------------------------------------------------------------------------------------------------------------------------------------------
ENT.VJ_NPC_Class = {"CLASS_IMPERIUM", "CLASS_MECH"}
ENT.HasMeleeAttack = false -- Should the SNPC have a melee attack?
ENT.HasRangeAttack = true -- Should the SNPC have a range attack?
ENT.RangeDistance = 5000 -- This is how far away it can shoot
ENT.RangeToMeleeDistance = 1 -- How close does it have to be until it uses melee?
ENT.TimeUntilRangeAttackProjectileRelease = 0.025 -- How much time until the projectile code is ran?
ENT.NextRangeAttackTime = 0.05 -- How much time until it can use a range attack?
ENT.DisableDefaultRangeAttackCode = true -- When true, it won't spawn the range attack entity, allowing you to make your own
ENT.DisableRangeAttackAnimation = true -- if true, it will disable the animation code
//ENT.SoundTbl_RangeAttack = {"vj_emplacements/m2/m2_tp.wav"}
ENT.RangeAttackPitch1 = 100
ENT.RangeAttackPitch2 = 100
ENT.RangeAttackSoundLevel = 80
-- Custom
ENT.Emp_MaxAmmo = 500
ENT.Emp_CurrentAmmo = 0
ENT.Emp_Reloading = false
ENT.Emp_Lerp_Yaw = 0
ENT.Emp_Lerp_Ptich = 0
ENT.Emp_Lerp_Ptich_Previous = 0
---------------------------------------------------------------------------------------------------------------------------------------------
function ENT:CustomOnInitialize()
self:SetCollisionBounds(Vector(20, 20, 60), Vector(-20, -20, 1))
self:SetBodygroup(1, 1)
self.ExtraGunModel = ents.Create("prop_vj_animatable")
--self.ExtraGunModel:SetModel("models/gameplay/tarantula.mdl")
self.ExtraGunModel:SetModel("models/zadkiel/tarantula.mdl")
self.ExtraGunModel:SetBodygroup(0, 1)
self.ExtraGunModel:SetPos(self:GetPos() - self:GetUp()*10)
self.ExtraGunModel:SetAngles(Angle(0,0,0))
self.ExtraGunModel:SetOwner(self)
//self.ExtraGunModel:SetParent(self)
//self.ExtraGunModel:Fire("SetParentAttachmentMaintainOffset","hookup")
//self.ExtraGunModel:Fire("SetParentAttachment","hookup")
self.ExtraGunModel:SetCollisionGroup(COLLISION_GROUP_IN_VEHICLE)
self.ExtraGunModel:Spawn()
self.ExtraGunModel:Activate()
//self.ExtraGunModel:SetSolid(SOLID_NONE)
//self.ExtraGunModel:AddEffects(EF_BONEMERGE)
self.Emp_CurrentAmmo = self.Emp_MaxAmmo
timer.Simple(0.1, function()
self:SetHealth(5000)
self:SetMaxHealth((5000))
end)
end
---------------------------------------------------------------------------------------------------------------------------------------------
function ENT:CustomOnThink()
if IsValid(self.ExtraGunModel) then
self.ExtraGunModel:SetAngles(Angle(0,0,0))
if self.Emp_CurrentAmmo <= 0 && self.Emp_Reloading == false then
self.Emp_Reloading = true
VJ_EmitSound(self,"vj_emplacements/m2/m2_reload.wav")
timer.Simple(2.67,function()
if IsValid(self) then
self.Emp_CurrentAmmo = self.Emp_MaxAmmo
self.Emp_Reloading = false
end
end)
end
if IsValid(self:GetEnemy()) then
local bone = self:LookupBone( "Turret" )
local pos = self:GetEnemy():GetPos():Angle()
self:ManipulateBoneAngles( bone, Angle(pos.p,0,pos.r) )
end
end
end
---------------------------------------------------------------------------------------------------------------------------------------------
function ENT:CustomAttackCheck_RangeAttack()
if self.Emp_CurrentAmmo > 0 then return true end
return false
end
---------------------------------------------------------------------------------------------------------------------------------------------
function ENT:CustomRangeAttackCode()
if !IsValid(self.ExtraGunModel) then return end
self.Emp_CurrentAmmo = self.Emp_CurrentAmmo - 2
local bone = self:LookupBone( "L_Muzzle" )
local pos = self:GetBonePosition( bone ) + self:GetForward()*10
local ang = self:GetBonePosition( bone ):Angle()
local fSpread = ((self:GetPos():Distance(self:GetEnemy():GetPos()))/100)
local bullet = {}
bullet.Attacker = self
bullet.Num = 1
bullet.Src = pos + self:GetRight()*50 //self.ExtraGunModel:GetAttachment(self.ExtraGunModel:LookupAttachment("muzzle")).Pos
bullet.Dir = (self:GetEnemy():GetPos() + self:GetEnemy():OBBCenter()) - (self:GetPos() + self:OBBCenter())
bullet.Spread = Vector(fSpread,fSpread,fSpread)
bullet.Tracer = 1
bullet.TracerName = ""
bullet.Force = 5
bullet.Damage = math.random(120,140)
bullet.AmmoType = "ar2"
bullet.Callback = function(attacker,tr,dmginfo)
util.Decal("SmallScorch", tr.HitPos + tr.HitNormal, tr.HitPos - tr.HitNormal)
local effectdata = EffectData()
effectdata:SetOrigin( tr.HitPos )
effectdata:SetStart( pos )
util.Effect( "effect_t_boltgun", effectdata )
end
local bullet2 = {}
bullet2.Attacker = self
bullet2.Num = 1
bullet2.Src = pos //self.ExtraGunModel:GetAttachment(self.ExtraGunModel:LookupAttachment("muzzle")).Pos
bullet2.Dir = (self:GetEnemy():GetPos() + self:GetEnemy():OBBCenter()) - (self:GetPos() + self:OBBCenter())
bullet2.Spread = Vector(fSpread,fSpread,fSpread)
bullet2.Tracer = 1
bullet2.TracerName = ""
bullet2.Force = 5
bullet2.Damage = math.random(120,140)
bullet2.AmmoType = "ar2"
bullet2.Callback = function(attacker,tr,dmginfo)
util.Decal("SmallScorch", tr.HitPos + tr.HitNormal, tr.HitPos - tr.HitNormal)
end
self.ExtraGunModel:FireBullets(bullet)
self.ExtraGunModel:FireBullets(bullet2)
self:RangeAttackSoundCode({"40k/krk_fire"..math.random(1, 6)..".wav"},{UseEmitSound=true})
ParticleEffect( "muzzleflash_bar_3p", pos, ang, self.ExtraGunModel )
local BulletShell = EffectData()
BulletShell:SetEntity(self.ExtraGunModel)
BulletShell:SetOrigin(self.ExtraGunModel:GetPos() + self:GetForward()*-2 + self:GetUp()*2)
util.Effect("RifleShellEject",BulletShell)
local FireLight1 = ents.Create("light_dynamic")
FireLight1:SetKeyValue("brightness", "4")
FireLight1:SetKeyValue("distance", "120")
FireLight1:SetPos(self:GetPos() + self:GetUp() * 50)
FireLight1:SetLocalAngles(self.ExtraGunModel:GetAngles())
FireLight1:Fire("Color", "255 150 60")
FireLight1:SetParent(self.ExtraGunModel)
FireLight1:Spawn()
FireLight1:Activate()
FireLight1:Fire("TurnOn","",0)
FireLight1:Fire("Kill","",0.07)
self.ExtraGunModel:DeleteOnRemove(FireLight1)
end
---------------------------------------------------------------------------------------------------------------------------------------------
function ENT:CustomOnRemove()
if IsValid(self.ReloadAmmoBox) then self.ReloadAmmoBox:Remove() end
if IsValid(self.ExtraGunModel) then
self.ExtraGunModel:SetCollisionGroup(COLLISION_GROUP_INTERACTIVE)
self.ExtraGunModel:SetOwner(NULL)
self.ExtraGunModel:SetParent(NULL)
self.ExtraGunModel:Fire("ClearParent")
self.ExtraGunModel:SetMoveType(MOVETYPE_VPHYSICS)
self:CreateExtraDeathCorpse("prop_physics",self.ExtraGunModel:GetModel(),{Pos=self.ExtraGunModel:GetPos(), Ang=self.ExtraGunModel:GetAngles(), HasVel=false})
self.ExtraGunModel:Remove()
end
end
function ENT:CustomOnPriorToKilled(dmginfo,hitgroup)
self:DeathEffects()
return false
end
function ENT:DeathEffects()
local effectdata = EffectData()
effectdata:SetOrigin(self:GetPos())
effectdata:SetScale( 500 )
util.Effect( "HelicopterMegaBomb", effectdata )
util.Effect( "ThumperDust", effectdata )
util.Effect( "Explosion", effectdata )
util.Effect( "VJ_Small_Explosion1", effectdata )
self.ExplosionLight1 = ents.Create("light_dynamic")
self.ExplosionLight1:SetKeyValue("brightness", "4")
self.ExplosionLight1:SetKeyValue("distance", "300")
self.ExplosionLight1:SetLocalPos(self:GetPos())
self.ExplosionLight1:SetLocalAngles( self:GetAngles() )
self.ExplosionLight1:Fire("Color", "255 150 0")
self.ExplosionLight1:SetParent(self)
self.ExplosionLight1:Spawn()
self.ExplosionLight1:Activate()
self.ExplosionLight1:Fire("TurnOn", "", 0)
self:DeleteOnRemove(self.ExplosionLight1)
util.ScreenShake(self:GetPos(), 100, 200, 1, 2500)
self:Remove()
end
/*-----------------------------------------------
*** Copyright (c) 2012-2018 by DrVrej, All rights reserved. ***
No parts of this code or any of its contents may be reproduced, copied, modified or adapted,
without the prior written consent of the author, unless otherwise indicated for stand-alone materials.
-----------------------------------------------*/ |
local mexico = require "mexico"
--
-- Mexico wrapper for a corona circle.
--
local Circle = mexico.class(mexico.DisplayObject)
--
-- Magic new function, since corona creates the object
-- and not we.
--
Circle.new = function(styles)
return display.newCircle(styles.x or 0, styles.y or 0, styles.radius)
end
--
-- Constructor
--
function Circle:init(styles)
local styles = table.mexico.clone(styles)
styles["radius"] = nil
mexico.DisplayObject.init(self, styles)
end
return Circle |
tat_small_win_s01_loot_deed = {
minimumLevel = 0,
maximumLevel = -1,
customObjectName = "Small Tatooine House, Style 1 (Windowed) Blueprint",
directObjectTemplate = "object/tangible/loot/loot_schematic/tat_sm_win_01_loot_schem.iff",
craftingValues = {
},
customizationStringNames = {},
customizationValues = {}
}
addLootItemTemplate("tat_small_win_s01_loot_deed", tat_small_win_s01_loot_deed)
|
local tools = {}
local conf = require('modules.tools.config')
tools['editorconfig/editorconfig-vim'] = {
ft = { 'go','typescript','javascript','vim','c','lua'}
}
tools['liuchengxu/vista.vim'] = {
cmd = 'Vista',
config = conf.vim_vista
}
return tools
|
local Button = hud.registry.Object:extend("Button")
function Button:initialize(parent, x, y, w, h)
hud.registry.Object.initialize(self, parent, x, y, w, h)
self.height = h or 40
self.label = "Button"
self.font = game.assets:getFont("Roboto-Bold")[19]
end
function Button:setLabel(label)
self.label = label
return self
end
function Button:draw()
-- draw the background
if self:isHovered() then
love.graphics.setColor(20, 20, 20)
else
love.graphics.setColor(0, 0, 0)
end
love.graphics.rectangle("fill", self.pos.x, self.pos.y, self.width, self.height)
-- outline
love.graphics.setColor(255, 255, 255)
love.graphics.setLineWidth(3)
love.graphics.rectangle("line", self.pos.x, self.pos.y, self.width, self.height)
-- calculate text position and print it
local tw = self.font:getWidth(self.label)
local th = self.font:getHeight()
local x = self.pos.x + (self.width - tw) / 2
local y = self.pos.y + (self.height - th) / 2
love.graphics.setFont(self.font)
love.graphics.print(self.label, x, y)
end
function Button:mousereleased(x, y, button)
if button ~= "l" then return end
self:emit("push")
end
|
local deepcopy = require "deepcopy"
local CHIP_ID = require "defs.chip_id_defs"
local PA_DEFS = {}
-- This simply maps the "consecutive" PAs from chip -> PA ID. Since they all require 3 chips in consecutive order, this mapping is sufficient.
PA_DEFS[CHIP_ID.Cannon] = CHIP_ID.ZCanon1
PA_DEFS[CHIP_ID.HiCannon] = CHIP_ID.ZCanon2
PA_DEFS[CHIP_ID.MCannon] = CHIP_ID.ZCanon3
PA_DEFS[CHIP_ID.GutPunch] = CHIP_ID.ZPunch
PA_DEFS[CHIP_ID.GutStrgt] = CHIP_ID.ZStrght
PA_DEFS[CHIP_ID.VarSwrd] = CHIP_ID.ZVaribl
PA_DEFS[CHIP_ID.YoYo1] = CHIP_ID.ZYoyo1
PA_DEFS[CHIP_ID.YoYo2] = CHIP_ID.ZYoyo2
PA_DEFS[CHIP_ID.YoYo3] = CHIP_ID.ZYoyo3
PA_DEFS[CHIP_ID.StepSwrd] = CHIP_ID.ZStep1
PA_DEFS[CHIP_ID.StepCros] = CHIP_ID.ZStep2
PA_DEFS[CHIP_ID.Bubbler] = CHIP_ID.BubSprd
PA_DEFS[CHIP_ID.BubV] = CHIP_ID.BubSprd
PA_DEFS[CHIP_ID.BublSide] = CHIP_ID.BubSprd
PA_DEFS[CHIP_ID.HeatShot] = CHIP_ID.HeatSprd
PA_DEFS[CHIP_ID.HeatV] = CHIP_ID.HeatSprd
PA_DEFS[CHIP_ID.HeatSide] = CHIP_ID.HeatSprd
PA_DEFS[CHIP_ID.Spreader] = CHIP_ID.HBurst
PA_DEFS[CHIP_ID.TimeBomb] = CHIP_ID.TimeBomPlus
PA_DEFS[CHIP_ID.MetaGel1] = CHIP_ID.GelRain
PA_DEFS[CHIP_ID.MetaGel2] = CHIP_ID.GelRain
PA_DEFS[CHIP_ID.MetaGel3] = CHIP_ID.GelRain
return PA_DEFS |
---@class EntityRef @
local EntityRef = {}
--------------------
-- Constructors
--------------------
--------------------
-- Variables
--------------------
--- optional
---
---@type Entity @(member)
EntityRef.Entity = nil
---@type boolean @(member)
EntityRef.IsCharmed = nil
---@type boolean @(member)
EntityRef.IsFriendly = nil
---@type Vector @(member)
EntityRef.Position = nil
---@type EntityType @(member)
EntityRef.SpawnerType = nil
---@type number @(member) (int)
EntityRef.SpawnerVariant = nil
---@type EntityType @(member)
EntityRef.Type = nil
---@type number @(member) (int)
EntityRef.Variant = nil
|
local ffi = require 'ffi'
local THNN = {}
local generic_THNN_h = require 'nn.THNN_h'
-- strip all lines starting with #
-- to remove preprocessor directives originally present
-- in THNN.h
generic_THNN_h = generic_THNN_h:gsub("\n#[^\n]*", "")
generic_THNN_h = generic_THNN_h:gsub("^#[^\n]*\n", "")
-- THGenerator struct declaration copied from torch7/lib/TH/THRandom.h
local base_declarations = [[
typedef void THNNState;
typedef struct {
unsigned long the_initial_seed;
int left;
int seeded;
unsigned long next;
unsigned long state[624]; /* the array for the state vector 624 = _MERSENNE_STATE_N */
double normal_x;
double normal_y;
double normal_rho;
int normal_is_valid;
} THGenerator;
]]
-- polyfill for LUA 5.1
if not package.searchpath then
local sep = package.config:sub(1,1)
function package.searchpath(mod, path)
mod = mod:gsub('%.', sep)
for m in path:gmatch('[^;]+') do
local nm = m:gsub('?', mod)
local f = io.open(nm, 'r')
if f then
f:close()
return nm
end
end
end
end
-- load libTHNN
THNN.C = ffi.load(package.searchpath('libTHNN', package.cpath))
ffi.cdef(base_declarations)
-- expand macros, allow to use original lines from lib/THNN/generic/THNN.h
local preprocessed = string.gsub(generic_THNN_h, 'TH_API void THNN_%(([%a%d_]+)%)', 'void THNN_TYPE%1')
local replacements =
{
{
['TYPE'] = 'Double',
['accreal'] = 'double',
['THTensor'] = 'THDoubleTensor',
['THIndexTensor'] = 'THLongTensor',
['THIntegerTensor'] = 'THIntTensor',
['THIndex_t'] = 'long',
['THInteger_t'] = 'int'
},
{
['TYPE'] = 'Float',
['accreal'] = 'double',
['THTensor'] = 'THFloatTensor',
['THIndexTensor'] = 'THLongTensor',
['THIntegerTensor'] = 'THIntTensor',
['THIndex_t'] = 'long',
['THInteger_t'] = 'int'
}
}
for i=1,#replacements do
local r = replacements[i]
local s = preprocessed
for k,v in pairs(r) do
s = string.gsub(s, k, v)
end
ffi.cdef(s)
end
THNN.NULL = ffi.NULL or nil
function THNN.getState()
return ffi.NULL or nil
end
function THNN.optionalTensor(t)
return t and t:cdata() or THNN.NULL
end
local function extract_function_names(s)
local t = {}
for n in string.gmatch(s, 'TH_API void THNN_%(([%a%d_]+)%)') do
t[#t+1] = n
end
return t
end
function THNN.bind(lib, base_names, type_name, state_getter)
local ftable = {}
local prefix = 'THNN_' .. type_name
for i,n in ipairs(base_names) do
-- use pcall since some libs might not support all functions (e.g. cunn)
local ok,v = pcall(function() return lib[prefix .. n] end)
if ok then
ftable[n] = function(...) v(state_getter(), ...) end -- implicitely add state
else
print('not found: ' .. prefix .. n .. v)
end
end
return ftable
end
-- build function table
local function_names = extract_function_names(generic_THNN_h)
THNN.kernels = {}
THNN.kernels['torch.FloatTensor'] = THNN.bind(THNN.C, function_names, 'Float', THNN.getState)
THNN.kernels['torch.DoubleTensor'] = THNN.bind(THNN.C, function_names, 'Double', THNN.getState)
torch.getmetatable('torch.FloatTensor').THNN = THNN.kernels['torch.FloatTensor']
torch.getmetatable('torch.DoubleTensor').THNN = THNN.kernels['torch.DoubleTensor']
function THNN.runKernel(f, type, ...)
local ftable = THNN.kernels[type]
if not ftable then
error('Unsupported tensor type: '..type)
end
local f = ftable[f]
if not f then
error(string.format("Function '%s' not found for tensor type '%s'.", f, type))
end
f(...)
end
return THNN
|
slot0 = class("FleetSkill", import(".BaseVO"))
slot0.SystemCommanderNeko = 1
slot0.TypeMoveSpeed = "move_speed"
slot0.TypeHuntingLv = "hunt_lv"
slot0.TypeAmbushDodge = "ambush_dodge"
slot0.TypeAirStrikeDodge = "airfight_doge"
slot0.TypeStrategy = "strategy"
slot0.TypeBattleBuff = "battle_buff"
slot0.TypeAttack = "attack"
slot0.TypeTorpedoPowerUp = "torpedo_power_up"
slot0.TriggerDDCount = "dd_count"
slot0.TriggerDDHead = "dd_head"
slot0.TriggerAroundEnemy = "around_enemy"
slot0.TriggerVanCount = "vang_count"
slot0.TriggerNekoPos = "pos"
slot0.TriggerAroundLand = "around_land"
slot0.TriggerAroundCombatAlly = "around_combat_ally"
slot0.TriggerShipCount = "count"
slot0.TriggerInSubTeam = "insubteam"
slot0.Ctor = function (slot0, slot1, slot2)
slot0.system = slot1
slot0.id = slot2
slot0.configId = slot0.id
end
slot0.GetSystem = function (slot0)
return slot0.system
end
slot0.bindConfigTable = function (slot0)
if slot0:GetSystem() == slot0.SystemCommanderNeko then
return pg.commander_skill_effect_template
end
end
slot0.GetType = function (slot0)
if slot0:GetSystem() == slot0.SystemCommanderNeko then
return slot0:getConfig("effect_type")
end
end
slot0.GetArgs = function (slot0)
if slot0:GetSystem() == slot0.SystemCommanderNeko then
return slot0:getConfig("args")
end
end
slot0.GetTriggers = function (slot0)
if slot0:GetSystem() == slot0.SystemCommanderNeko then
return slot0:getConfig("condition")
end
end
slot0.triggerSkill = function (slot0, slot1)
slot3 = _.reduce(slot2, nil, function (slot0, slot1)
slot3 = slot1:GetArgs()
if slot1:GetType() == FleetSkill.TypeBattleBuff then
table.insert(slot0 or {}, slot3[1])
return slot0 or
end
end)
return slot3, _.filter(slot0:findSkills(slot1), function (slot0)
return _.any(slot1, function (slot0)
return slot0[1] == FleetSkill.TriggerInSubTeam and slot0[2] == 1
end) == slot0.getFleetType(slot3) == FleetType.Submarine and _.all(slot0:GetTriggers(), function (slot0)
return slot0.NoneChapterFleetCheck(slot0.NoneChapterFleetCheck, , slot0)
end)
end)
end
slot0.NoneChapterFleetCheck = function (slot0, slot1, slot2)
slot4 = getProxy(BayProxy)
if slot2[1] == FleetSkill.TriggerDDCount then
slot5 = slot4:getShipByTeam(slot0, TeamType.Vanguard)
return slot2[2] <= #_.filter(fleetShips, function (slot0)
return slot0:getShipType() == ShipType.QuZhu
end) and slot6 <= slot2[3]
elseif slot3 == FleetSkill.TriggerDDHead then
return #slot4.getShipByTeam(slot4, slot0, TeamType.Vanguard) > 0 and slot5[1]:getShipType() == ShipType.QuZhu
elseif slot3 == FleetSkill.TriggerVanCount then
return slot2[2] <= #slot4:getShipByTeam(slot0, TeamType.Vanguard) and #slot5 <= slot2[3]
elseif slot3 == FleetSkill.TriggerShipCount then
return slot2[3] <= #_.filter(slot4:getShipsByFleet(slot0), function (slot0)
return table.contains(slot0[2], slot0:getShipType())
end) and #slot5 <= slot2[4]
elseif slot3 == FleetSkill.TriggerNekoPos then
slot5 = slot0.findCommanderBySkillId(slot0, slot1.id)
for slot9, slot10 in pairs(slot0:getCommanders()) do
if slot5.id == slot10.id and slot9 == slot2[2] then
return true
end
end
elseif slot3 == FleetSkill.TriggerInSubTeam then
return true
else
return false
end
end
slot0.triggerMirrorSkill = function (slot0, slot1)
slot3 = _.reduce(slot2, nil, function (slot0, slot1)
slot3 = slot1:GetArgs()
if slot1:GetType() == FleetSkill.TypeBattleBuff then
table.insert(slot0 or {}, slot3[1])
return slot0 or
end
end)
return slot3, _.filter(slot0:findSkills(slot1), function (slot0)
return _.any(slot1, function (slot0)
return slot0[1] == FleetSkill.TriggerInSubTeam and slot0[2] == 1
end) == slot0.getFleetType(slot3) == FleetType.Submarine and _.all(slot0:GetTriggers(), function (slot0)
return slot0.MirrorFleetCheck(slot0.MirrorFleetCheck, , slot0)
end)
end)
end
slot0.MirrorFleetCheck = function (slot0, slot1, slot2)
slot4 = getProxy(BayProxy)
if slot2[1] == FleetSkill.TriggerDDCount then
slot5 = slot0:getShipsByTeam(TeamType.Vanguard, false)
return slot2[2] <= #_.filter(fleetShips, function (slot0)
return slot0:getShipType() == ShipType.QuZhu
end) and slot6 <= slot2[3]
elseif slot3 == FleetSkill.TriggerDDHead then
return #slot0.getShipsByTeam(slot0, TeamType.Vanguard, false) > 0 and slot5[1]:getShipType() == ShipType.QuZhu
elseif slot3 == FleetSkill.TriggerVanCount then
return slot2[2] <= #slot0:getShipsByTeam(TeamType.Vanguard, false) and #slot5 <= slot2[3]
elseif slot3 == FleetSkill.TriggerShipCount then
return slot2[3] <= #_.filter(slot0:getShips(false), function (slot0)
return table.contains(slot0[2], slot0:getShipType())
end) and #slot5 <= slot2[4]
elseif slot3 == FleetSkill.TriggerNekoPos then
slot5 = slot0.findCommanderBySkillId(slot0, slot1.id)
for slot9, slot10 in pairs(slot0:getCommanders()) do
if slot5.id == slot10.id and slot9 == slot2[2] then
return true
end
end
elseif slot3 == FleetSkill.TriggerInSubTeam then
return true
else
return false
end
end
slot0.GuildBossTriggerSkill = function (slot0, slot1)
slot3 = _.reduce(slot2, nil, function (slot0, slot1)
slot3 = slot1:GetArgs()
if slot1:GetType() == FleetSkill.TypeBattleBuff then
table.insert(slot0 or {}, slot3[1])
return slot0 or
end
end)
return slot3, _.filter(slot0:findSkills(slot1), function (slot0)
slot4 = slot0:GetShips()
return _.any(slot1, function (slot0)
return slot0[1] == FleetSkill.TriggerInSubTeam and slot0[2] == 1
end) == slot0.getFleetType(slot3) == FleetType.Submarine and _.all(slot0:GetTriggers(), function (slot0)
return slot0.GuildBossFleetCheck(slot0.GuildBossFleetCheck, , , slot0)
end)
end)
end
slot0.GuildBossFleetCheck = function (slot0, slot1, slot2, slot3)
function slot5()
for slot4, slot5 in ipairs(slot0) do
if slot5.ship.getTeamType(slot6) == TeamType.Vanguard then
table.insert(slot0, slot6)
end
end
return slot0
end
if slot3[1] == FleetSkill.TriggerDDCount then
return slot3[2] <= #_.filter(slot1, function (slot0)
return slot0.ship.getShipType(slot1) == ShipType.QuZhu
end) and slot6 <= slot3[3]
elseif slot4 == FleetSkill.TriggerDDHead then
return #slot5() > 0 and slot6[1]:getShipType() == ShipType.QuZhu
elseif slot4 == FleetSkill.TriggerVanCount then
return slot3[2] <= #slot5() and #slot6 <= slot3[3]
elseif slot4 == FleetSkill.TriggerShipCount then
return slot3[3] <= #_.filter(slot1, function (slot0)
return table.contains(slot0[2], slot0.ship:getShipType())
end) and #slot6 <= slot3[4]
elseif slot4 == FleetSkill.TriggerNekoPos then
slot6 = slot0.findCommanderBySkillId(slot0, slot2.id)
for slot10, slot11 in pairs(slot0:getCommanders()) do
if slot6.id == slot11.id and slot10 == slot3[2] then
return true
end
end
elseif slot4 == FleetSkill.TriggerInSubTeam then
return true
else
return false
end
end
return slot0
|
VANISH_SKILL_POINT_MULTIPLIER = 3; |
local composer = require( "composer" )
local scene = composer.newScene()
-- -----------------------------------------------------------------------------------
-- Code outside of the scene event functions below will only be executed ONCE unless
-- the scene is removed entirely (not recycled) via "composer.removeScene()"
-- -----------------------------------------------------------------------------------
-- set up physics
local physics = require( "physics" )
physics.start()
--physics.setDrawMode( "normal" ) -- the default Corona renderer (no collision outlines)
--physics.setDrawMode( "hybrid" ) -- overlays collision outlines on normal display objects
--physics.setDrawMode( "debug" ) -- shows collision engine outlines only
-- load submarine module
local subMod = require( "scenes.game.submarine" )
-- load background module
local bgMod = require( "scenes.game.background" )
-- load spawner module
local spawnMod = require( "scenes.game.spawner" )
-- load savedata module
local savedata = require( "scenes.libs.savedata" )
-- initialize variables -------------------------------------------------------
local font = composer.getVariable( "defaultFontParams" )
local score = 0
local scoreText
local scoreMultiplier = 1
local scoreMultiplierText
local seaLifeMax = 1500
local seaLife = seaLifeMax
local seaLifeProgressView
local maxGameSpeed = 3
local isGameOver = false
local isExitGame = false
local isHideDid = false
local updateGameSpeedTimer
local clearObjectsTimer
local updateSeaLifeTimer
local updateScoreMultiplierTimer
local musicTrack
local groundObjPickSound
local floatingObjPickSound
local obstacleCollisionSound
local deadSeaSound
local multiplierUpSound
-- display groups
local bgGroup
local mainGroup
local submarineGroup
local uiGroup
-- assets dir
local uiDir = "assets/ui/" -- user interface assets dir
-- define shared collFiltParams table to define collisions filter parameters
composer.setVariable( "collFiltParams", {
submarineFilter = { categoryBits = 1, maskBits = 14 },
pickableObjectFilter = { categoryBits = 2, maskBits = 5 },
obstacleFilter = { categoryBits = 4, maskBits = 3 },
submarinePlatformFilter = { categoryBits = 8, maskBits = 1 },
submarineBubbleFilter = { categoryBits = 16, maskBits = 0 }
} )
-- ----------------------------------------------------------------------------
-- IMPORTANT: LUA DOESN'T HAVE A CONCEPT OF FUNCTION PROTOTYPES (LIKE C)
-- SO WE CREATE A SORT OF FUNCTION PROTOTYPE WITH A FORWARD DECLARATION OF ALL FUNCTION NAMES
-- ----------------------------------------------------------------------------
-- FORWARD FUNCTION NAMES DECLARATION -----------------------------------------
local exitGame
local exitGameNormal
local exitGameRefresh
local gameOver
local updateGameSpeed
local onCollision
local clearObjects
local updateSeaLife
local newProgressView
local setScoreMultiplier
local updateScoreMultiplier
local hideDid
-- ----------------------------------------------------------------------------
-- game functions
-- ----------------------------------------------------------------------------
function exitGame( isRefresh )
-- CRITICAL CHECK: check if the exitGame function has already been called
if ( isExitGame == true ) then
return -- abort exitGame call
end
-- set exitGame as called
isExitGame = true
if ( isRefresh ) then
composer.gotoScene( "scenes.refresh" )
else
composer.gotoScene( "scenes.menu", { time=1000, effect="slideRight" } )
end
end
function exitGameNormal()
exitGame( false )
end
function exitGameRefresh()
exitGame( true )
end
function gameOver()
-- CRITICAL CHECK: check if the gameOver function has already been called
if ( isGameOver == true ) then
return -- abort gameOver call
end
-- set gameOver as called
isGameOver = true
-- stop the music
audio.stop( 1 )
-- stop screen objects movement
bgMod.setStopScrolling( true )
physics.pause()
subMod.cancAllSubTrans()
-- clear listeners, timers, etc for a clean stop
hideDid()
-- regain control of touch events
display.currentStage:setFocus( nil )
-- save score
savedata.addNewScore( score )
-- gain money based on score
local money = savedata.getGamedata( "money" )
local moneyGained = math.ceil( score / 15 )
money = money + moneyGained
savedata.setGamedata( "money", money )
-- options table for the overlay scene
local options = {
isModal = true,
effect = "fade",
time = 400,
params = {
scoreParam = score,
moneyGainedParam = moneyGained
}
}
-- show the gameover overlay
composer.showOverlay( "scenes.game.gameover", options )
end
function updateGameSpeed()
local gs = composer.getVariable( "gameSpeed" )
-- limit game speed to maxGameSpeed
if ( gs < maxGameSpeed ) then
local st = composer.getVariable( "startTime" )
gs = 1 + ( (os.time() - st) / 100 )
--gs = 1 + ( (os.time() - st) / 10 ) -- TEST
--gs = 3 -- TEST
composer.setVariable( "gameSpeed", gs )
end
--print( "gameSpeed: ", gs ) -- TEST
end
function onCollision( event )
-- detect "began" phase of collision
if ( event.phase == "began" ) then
-- rename for simplicity
local obj1 = event.object1
local obj2 = event.object2
-- handle collisions concerning the "submarine" name
-- no way to determine who is who, so we write both conditions
if ( obj1.myName == "submarine" or obj2.myName == "submarine" ) then
-- rename for convenience
local collidingObj
if ( obj1.myName == "submarine" ) then
collidingObj = obj2
else
collidingObj = obj1
end
-- handle collision with pickable object type -------------------------------
if ( collidingObj.myType == "pickableObject" ) then
-- update score and sea life based on name of "collidingObj"
if ( collidingObj.myName == "groundObject" ) then
-- play pick sound
audio.play( groundObjPickSound )
score = math.floor( score + ( 150 * scoreMultiplier ) )
seaLife = seaLife + 200
elseif ( collidingObj.myName == "floatingObject" ) then
-- play pick sound
audio.play( floatingObjPickSound )
score = math.floor( score + ( 50 * scoreMultiplier ) )
seaLife = seaLife + 50
end
-- check bounds of sea life
if ( seaLife > seaLifeMax ) then
seaLife = seaLifeMax
end
-- update score text
scoreText.text = "Score: " .. score
-- update sea life bar
seaLifeProgressView:setProgress( seaLife / seaLifeMax )
-- remove "collidingObj" reference from "screenObjectsTable"
local screenObjectsTable = composer.getVariable( "screenObjectsTable" )
for i = #screenObjectsTable, 1, -1 do
if ( screenObjectsTable[i] == collidingObj ) then
table.remove( screenObjectsTable, i )
break
end
end
-- remove "collidingObj" from display
display.remove( collidingObj )
-- handle collision with "obstacleObject" type ------------------------------
elseif ( collidingObj.myType == "obstacleObject" ) then
-- play obstacleCollisionSound
audio.play( obstacleCollisionSound )
gameOver()
end
-- handle collisions concerning the "obstacleObject" type
-- this check is done to avoid losing score on objects that are impossible to pick, deleting them from game
elseif ( obj1.myType == "obstacleObject" or obj2.myType == "obstacleObject" ) then
-- rename for convenience
local collidingObj
if ( obj1.myType == "obstacleObject" ) then
collidingObj = obj2
else
collidingObj = obj1
end
-- remove "pickableObject" type colliding with he "obstacleObject" type
if ( collidingObj.myType == "pickableObject" ) then
-- remove "collidingObj" reference from "screenObjectsTable"
local screenObjectsTable = composer.getVariable( "screenObjectsTable" )
for i = #screenObjectsTable, 1, -1 do
if ( screenObjectsTable[i] == collidingObj ) then
table.remove( screenObjectsTable, i )
break
end
end
-- remove "collidingObj" from display
display.remove( collidingObj )
end
end
end
end
function clearObjects()
-- remove objects which have drifted off screen
local screenObjectsTable = composer.getVariable( "screenObjectsTable" )
for i = #screenObjectsTable, 1, -1 do
local thisObject = screenObjectsTable[i]
if ( thisObject.x < -800 ) then
display.remove( thisObject )
table.remove( screenObjectsTable, i )
end
end
end
function updateSeaLife()
-- update sea life when you miss an item to pick
local screenObjectsTable = composer.getVariable( "screenObjectsTable" )
for i = #screenObjectsTable, 1, -1 do
local thisObject = screenObjectsTable[i]
-- the nil check is to avoid race conditions with clearObjects()
if ( thisObject ~= nil and thisObject.x < 0 ) then
if ( thisObject.myName == "groundObject" or thisObject.myName == "floatingObject" ) then
-- check if the item is not already counted
if ( thisObject.mySeaLife ) then
-- update sea life value based on missed item
if ( thisObject.myName == "groundObject" ) then
seaLife = seaLife - 150
elseif ( thisObject.myName == "floatingObject" ) then
seaLife = seaLife - 80
end
-- set the item as counted
thisObject.mySeaLife = false
end
-- check if game over
if ( seaLife <= 0 ) then
if ( isGameOver == false ) then
-- play deadSeaSound
audio.play( deadSeaSound )
end
gameOver()
break -- the game is over, no need to finish the for
end
end
end
end
-- update sea life bar
seaLifeProgressView:setProgress( seaLife / seaLifeMax )
end
function newProgressView( percent, xPos, yPos )
local assetWidth = 512
local assetHeight = 60
-- create the progressView's display group hierarchy
local progressLayer = display.newGroup()
local progressView = display.newGroup()
progressView:insert( progressLayer )
-- insert in the uiGroup
uiGroup:insert( progressView )
-- set progress bar fill image
progressView.barFill = display.newImageRect( progressLayer, uiDir .. "lifebar/fill.png", assetWidth, assetHeight )
-- set a color filled Rect to progressively cover the bar
progressView.progress = display.newRect( progressLayer, assetWidth/2, 0, assetWidth, assetHeight )
progressView.progress:setFillColor( 0.8, 0.6, 0.2 )
progressView.progress.anchorX = 1 -- align
progressView.progress.width = assetWidth - ( percent * assetWidth ) -- set percent
-- set mask on progressLayer
local mask = graphics.newMask( uiDir .. "lifebar/mask.png" )
progressLayer:setMask( mask )
-- set frame image
progressView.barFrame = display.newImageRect( progressView, uiDir .. "lifebar/frame.png", assetWidth, assetHeight )
-- add badge image next to the progress bar
progressView.badgeSeaLife = display.newImageRect( progressView, uiDir .. "badgeSeaLife.png", 512, 512 )
local badgeScale = 0.14
progressView.badgeSeaLife.xScale = badgeScale
progressView.badgeSeaLife.yScale = badgeScale
progressView.badgeSeaLife.x = progressView.badgeSeaLife.x - 270
-- add method to set the percent of the bar
function progressView:setProgress( percent )
-- update without animation
--self.progress.width = assetWidth - ( percent * assetWidth )
-- update WITH animation
transition.cancel( self.progress )
transition.to( self.progress, { time = 200, width = assetWidth - ( percent * assetWidth ) } )
end
-- set position of progressView group
progressView.x = xPos
progressView.y = yPos
-- return the obj created
return progressView
end
function setScoreMultiplier( newValue )
if ( scoreMultiplier ~= newValue ) then
-- update value
scoreMultiplier = newValue
-- update visible text
scoreMultiplierText.text = "X" .. scoreMultiplier
-- set visible
scoreMultiplierText.isVisible = true
-- animate
local fromX = scoreMultiplierText.x - 500
local fromY = scoreMultiplierText.y + 400
local fromScaleX = 3
local fromScaleY = 3
transition.from( scoreMultiplierText, { timer = 500, xScale = fromScaleX, yScale = fromScaleY, x = fromX, y = fromY } )
end
end
function updateScoreMultiplier()
-- play multiplierUpSound
audio.play( multiplierUpSound )
setScoreMultiplier( scoreMultiplier + 0.25 )
end
function hideDid()
-- CRITICAL CHECK: check if the hideDid function has already been called
if ( isHideDid == true ) then
return -- abort hideDid call
end
-- set hideDid as called
isHideDid = true
-- do the cleaning
-- remove Runtime listeners
Runtime:removeEventListener( "collision", onCollision )
-- cancel timers
timer.cancel( updateGameSpeedTimer )
timer.cancel( clearObjectsTimer )
timer.cancel( updateSeaLifeTimer )
timer.cancel( updateScoreMultiplierTimer )
-- clear loaded modules
bgMod.hideDid()
subMod.hideDid()
spawnMod.hideDid()
end
-- -----------------------------------------------------------------------------------
-- Scene event functions
-- -----------------------------------------------------------------------------------
-- create()
function scene:create( event )
local sceneGroup = self.view
-- Code here runs when the scene is first created but has not yet appeared on screen
physics.pause() -- Temporarily pause the physics engine (we don't want the game to really start yet)
-- set composer game vars
composer.setVariable( "startTime", os.time() ) -- save game start time
composer.setVariable( "gameSpeed", 1 ) -- set initial game speed
composer.setVariable( "screenObjectsTable", {} ) -- keep a table of screen objects to clear during game and other purposes
-- Set up display groups
-- NOTE: here we use the Group vars initialized earlier
bgGroup = display.newGroup() -- display group for background
sceneGroup:insert( bgGroup ) -- insert into the scene's view group
mainGroup = display.newGroup() -- display group for the game objects
sceneGroup:insert( mainGroup ) -- insert into the scene's view group
submarineGroup = display.newGroup() -- display group for the submarine object
sceneGroup:insert( submarineGroup ) -- insert into the scene's view group
uiGroup = display.newGroup() -- display group for UI
sceneGroup:insert( uiGroup ) -- insert into the scene's view group
-- load audio (sounds and streams)
local audioDir = composer.getVariable( "audioDir" )
musicTrack = audio.loadStream( audioDir .. "game.mp3" )
groundObjPickSound = audio.loadSound( audioDir .. "sfx/pickGroundObj.wav" )
floatingObjPickSound = audio.loadSound( audioDir .. "sfx/pickFloatingObj.wav" )
obstacleCollisionSound = audio.loadSound( audioDir .. "sfx/explosion.wav" )
deadSeaSound = audio.loadSound( audioDir .. "sfx/deadSea.wav" )
multiplierUpSound = audio.loadSound( audioDir .. "sfx/multiplierUp.wav" )
-- set event listener to update game speed
updateGameSpeedTimer = timer.performWithDelay( 1000, updateGameSpeed, 0 )
-- create background
bgMod.create( bgGroup )
-- create submarine
subMod.create( submarineGroup, mainGroup )
-- create spawner
spawnMod.create( mainGroup )
-- global collision listener
Runtime:addEventListener( "collision", onCollision )
-- display score
scoreText = display.newText( uiGroup, "SCORE: " .. score, display.contentWidth-50, 40, font.path, 70 )
scoreText.anchorX = 1 -- align
scoreText:setFillColor( font.colorR, font.colorG, font.colorB )
-- display score multiplier
scoreMultiplierText = display.newText( uiGroup, "X" .. scoreMultiplier, display.contentWidth-50, 100, font.path, 80 )
scoreMultiplierText.anchorX = 1 -- align
scoreMultiplierText.isVisible = false
scoreMultiplierText:setFillColor( 1, 0, 0 )
-- display sea life bar (progress view)
seaLifeProgressView = newProgressView( 1, display.contentCenterX, 40 )
-- set timer to trigger the update sea life at regular intervals
updateSeaLifeTimer = timer.performWithDelay( 1000, updateSeaLife, 0 )
-- display menu button in the upper-left corner
local homeButton = display.newImage( uiGroup, uiDir .. "backArrow.png" )
homeButton:scale( 0.2, 0.2 )
homeButton.x = 10
homeButton.y = 10
homeButton.anchorX = 0 -- align
homeButton.anchorY = 0 -- align
homeButton:addEventListener( "tap", exitGameNormal )
-- set timer to trigger the clear objects function at regular intervals
clearObjectsTimer = timer.performWithDelay( 2100, clearObjects, 0 )
end
-- show()
function scene:show( event )
local sceneGroup = self.view
local phase = event.phase
if ( phase == "will" ) then
-- Code here runs when the scene is still off screen (but is about to come on screen)
-- set timer to update the score multiplier (+0.25 every 30secs)
updateScoreMultiplierTimer = timer.performWithDelay( 30000, updateScoreMultiplier, 0)
elseif ( phase == "did" ) then
-- Code here runs when the scene is entirely on screen
-- re-start physics engine ( previously stopped in create() )
physics.start()
-- set the objects spawner
spawnMod.showDid()
-- start playing the music (in loop)
audio.play( musicTrack, { channel=1, loops=-1 } )
end
end
-- hide()
function scene:hide( event )
local sceneGroup = self.view
local phase = event.phase
if ( phase == "will" ) then
-- Code here runs when the scene is on screen (but is about to go off screen)
elseif ( phase == "did" ) then
-- Code here runs immediately after the scene goes entirely off screen
hideDid() -- do all the cleaning
-- stop all audio playing
audio.stop()
-- remove the scene from cache
-- NOTE: this function entirely removes the scene and all the objects and variables inside,
-- in particular it takes care of display.remove() all display objects inside sceneGroup hierarchy
-- but NOTE that it doesn't remove things like timers or listeners attached to the "Runtime" object (so we took care of them manually)
composer.removeScene( "scenes.game" )
end
end
-- destroy()
function scene:destroy( event )
local sceneGroup = self.view
-- Code here runs prior to the removal of scene's view
-- dispose loaded audio
audio.dispose( musicTrack )
audio.dispose( groundObjPickSound )
audio.dispose( floatingObjPickSound )
audio.dispose( obstacleCollisionSound )
audio.dispose( deadSeaSound )
audio.dispose( multiplierUpSound )
end
-- scene methods to call from gameOver overlay --------------------------------
function scene:gotoMenu()
exitGameNormal()
end
function scene:gotoRefresh()
exitGameRefresh()
end
-- ----------------------------------------------------------------------------
-- -----------------------------------------------------------------------------------
-- Scene event function listeners
-- -----------------------------------------------------------------------------------
scene:addEventListener( "create", scene )
scene:addEventListener( "show", scene )
scene:addEventListener( "hide", scene )
scene:addEventListener( "destroy", scene )
-- -----------------------------------------------------------------------------------
return scene
|
return function (str) return '\t' .. str end
|
modifier_strength = class(Modifier)
LinkLuaModifier("modifier_strength", modifier_strength)
function modifier_strength:OnCreated ()
self.GetModifierBonus = self.GetModifierBonus
self:SetVisible(false)
self:AttachVariableModifier("strength");
end
function modifier_strength:GetModifierBonus_strength()
return self:GetAbility():GetSpecialValue("bonus_strength")
end
|
description = [[
Extracts and outputs HTML and JavaScript comments from HTTP responses.
]]
---
-- @usage nmap -p80 --script http-comments-displayer.nse <host>
--
-- This scripts uses patterns to extract HTML comments from HTTP
-- responses and writes these to the command line.
--
-- @args http-comments-displayer.singlepages Some single pages
-- to check for comments. For example, {"/", "/wiki"}.
-- Default: nil (crawler mode on)
-- @args http-comments-displayer.context declares the number of chars
-- to extend our final strings. This is useful when we need to
-- to see the code that the comments are referring to.
-- Default: 0, Maximum Value: 50
--
--
-- @output
-- PORT STATE SERVICE REASON
-- 80/tcp open http syn-ack
-- | http-comments-displayer:
-- | Path: /
-- | Line number: 214
-- | Comment:
-- | <!-- This needs fixing. -->
-- |
-- | Path: /register.php
-- | Line number: 15
-- | Comment:
-- |_ /* We should avoid the hardcoding here */
--
---
categories = {"discovery", "safe"}
author = "George Chatzisofroniou"
license = "Same as Nmap--See https://nmap.org/book/man-legal.html"
local http = require "http"
local shortport = require "shortport"
local stdnse = require "stdnse"
local table = require "table"
local string = require "string"
local httpspider = require "httpspider"
PATTERNS = {
"<!%-.-%-!?>", -- HTML comment
"/%*.-%*/", -- Javascript multiline comment
"[ ,\n]//.-\n" -- Javascript one-line comment. Could be better?
}
portrule = shortport.port_or_service( {80, 443}, {"http", "https"}, "tcp", "open")
-- Returns comment's line number by counting the occurrences of the
-- new line character ("\n") from the start of the HTML file until
-- the related comment.
local getLineNumber = function(body, comment)
local partofresponse = body:find(comment, 1, true)
partofresponse = body:sub(0, partofresponse)
local _, count = string.gsub(partofresponse, "\n", "\n")
return count + 1
end
action = function(host, port)
local context = stdnse.get_script_args("http-comments-displayer.context")
local singlepages = stdnse.get_script_args("http-comments-displayer.singlepages")
local comments = {}
local crawler = httpspider.Crawler:new( host, port, '/', { scriptname = SCRIPT_NAME, withinhost = 1 } )
if (not(crawler)) then
return
end
crawler:set_timeout(10000)
if context then
if (tonumber(context) > 100) then
context = 100
end
-- Lua's abbreviated patterns support doesn't have a fixed-number-of-repetitions syntax.
for i, pattern in ipairs(PATTERNS) do
PATTERNS[i] = string.rep(".", context) .. PATTERNS[i] .. string.rep(".", context)
end
end
local index, k, target, response, path
while (true) do
if singlepages then
k, target = next(singlepages, index)
if (k == nil) then
break
end
response = http.get(host, port, target)
path = target
else
local status, r = crawler:crawl()
-- if the crawler fails it can be due to a number of different reasons
-- most of them are "legitimate" and should not be reason to abort
if (not(status)) then
if (r.err) then
return stdnse.format_output(false, r.reason)
else
break
end
end
response = r.response
path = tostring(r.url)
end
if response.body then
for i, pattern in ipairs(PATTERNS) do
for c in string.gmatch(response.body, pattern) do
local linenumber = getLineNumber(response.body, c)
comments[c] = "\nPath: " .. path .. "\nLine number: " .. linenumber .. "\nComment: \n"
end
end
if (index) then
index = index + 1
else
index = 1
end
end
end
-- If the table is empty.
if next(comments) == nil then
return "Couldn't find any comments."
end
-- Create a nice output.
local results = {}
for c, _ in pairs(comments) do
table.insert(results, {_, {{c}}})
end
results.name = crawler:getLimitations()
return stdnse.format_output(true, results)
end
|
--# selene: allow(unused_variable)
---@diagnostic disable: unused-local
-- Watch for Pasteboard Changes.
-- macOS doesn't offer any API for getting Pasteboard notifications, so this extension uses polling to check for Pasteboard changes at a chosen interval (defaults to 0.25).
---@class hs.pasteboard.watcher
local M = {}
hs.pasteboard.watcher = M
-- Gets or sets the polling interval (i.e. the frequency the pasteboard watcher checks the pasteboard).
--
-- Parameters:
-- * value - an optional number to set the polling interval to.
--
-- Returns:
-- * The polling interval as a number.
--
-- Notes:
-- * This only affects new watchers, not existing/running ones.
-- * The default value is 0.25.
---@return number
function M.interval(value, ...) end
-- Creates and starts a new `hs.pasteboard.watcher` object for watching for Pasteboard changes.
--
-- Parameters:
-- * callbackFn - A function that will be called when the Pasteboard contents has changed. It should accept one parameter:
-- * A string containing the pasteboard contents or `nil` if the contents is not a valid string.
-- * name - An optional string containing the name of the pasteboard. Defaults to the system pasteboard.
--
-- Returns:
-- * An `hs.pasteboard.watcher` object
--
-- Notes:
-- * Internally this extension uses a single `NSTimer` to check for changes to the pasteboard count every half a second.
-- * Example usage:
-- ```lua
-- generalPBWatcher = hs.pasteboard.watcher.new(function(v) print(string.format("General Pasteboard Contents: %s", v)) end)
-- specialPBWatcher = hs.pasteboard.watcher.new(function(v) print(string.format("Special Pasteboard Contents: %s", v)) end, "special")
-- hs.pasteboard.writeObjects("This is on the general pasteboard.")
-- hs.pasteboard.writeObjects("This is on the special pasteboard.", "special")```
function M.new(callbackFn, name, ...) end
-- Returns a boolean indicating whether or not the Pasteboard Watcher is currently running.
--
-- Parameters:
-- * None
--
-- Returns:
-- * A boolean value indicating whether or not the timer is currently running.
---@return boolean
function M:running() end
-- Starts an `hs.pasteboard.watcher` object
--
-- Parameters:
-- * None
--
-- Returns:
-- * The `hs.pasteboard.watcher` object
function M:start() end
-- Stops an `hs.pasteboard.watcher` object
--
-- Parameters:
-- * None
--
-- Returns:
-- * The `hs.pasteboard.watcher` object
function M:stop() end
|
dungeonBranches = {}
--Stairs: {branch="branch",depth=1,min_depth=1,max_depth=1,replace_upstairs=false,replace_downstairs=false,exit_depth=1,oneway=false,chance=100}
local main = {
name = "Dungeon",
max_depth=3,
depthName="Depth",
mapTypes = {'dungeon','caves','forest'},
creatureTags={'mainbranch'},
possibleExits = {{branch="town",depth=1,replace_upstairs=true},{branch="demonruins",min_depth=2,max_depth=3,name="Dark Portal"},{branch="endgame",depth=3,replace_downstairs=true}},
forceMapTypes = {},
allMapsUnique=true, --If this is set to true, map types will not be repeated when maps are created for this level
noBacktrack=false, --If this is set to true, exits leading back to previous levels will not be created
event_chance=50,
event_cooldown=10
}
dungeonBranches['main'] = main
local town = {
name = "Town",
max_depth=1,
hideDepth=true, --Don't show the depth you're on when displaying the name of the map
hideName=true, --If this is set to true, the name of the branch will not be shown when displaying the name of the map
forceMapTypes={[1]="town"},
possibleExits = {{branch="main",depth=1,replace_downstairs=true},{branch="wilderness",depth=1}},
creatures={"townsperson"},
factionTags={"organized"}
}
dungeonBranches['town'] = town
local demonruins = {
name = "Demon Ruins",
max_depth=3,
forceMapTypes = {[1]="lavacave",[2]="demonruins",[3]="demoncitadel"}, --Specific map types will be forced for the given depths
mapTypes = {'lavacave','demonruins'}, --These map types will be used to generate levels in this branch
creatureTypes = {'demon'}, --Creatures of these types will be added to the list of potential creatures in this branch
creatureFactions = {'lightchurch'}, --Creatures belonging to these factions will be added to the list of potential creatures in this branch
creatureTags = {'demon','fire','demonruins'}, --Creatures with these tags will be added to the list of potential creatures in this branch
itemTags = {'magic','unholy','demon','fire'}, --Items with these tags will be added to the list of potential items in this branch
passedTags = {'holy','unholy','demon','fire'}, --These tags will be given priority for enchantments, and passed to items/creatures to do with what they will (ex: scrolls, to put preference on spells with these tags)
creatures = {}, --These specific creatures will be added to the list of potential creatures in this branch
items = {}, --These specific items will be added to the list of potential items in this branch
bosses = {},
noBacktrack=false
}
dungeonBranches['demonruins'] = demonruins
local wilderness = {
name = "The Wilds",
max_depth=2,
noMapNames=true,
contentTags={"wild"}, -- This value will be used for any content tag list (ie creatureTags, itemTags, etc) unless a more specific tag list is set
mapTags = {'plants'}, --Map types with these tags will be added to the list of map types possible in this branch
creatureTypes={'animal'},
possibleExits = {{branch="town",depth=1,replace_upstairs=true},{branch="main",depth=1}},
forceMapTypes = {},
}
dungeonBranches['wilderness'] = wilderness
local endgame = {
name = "The Hall of Heroes",
forceMapTypes = {[1]="endgame"},
max_depth=1,
hideName=true, --If this is set to true, the name of the branch will not be shown when displaying the name of the map
hideDepth=true,
noCreatures=true, --No creatures will be generated on this branch
noItems=true, --No items will be generated on this branch
noStores=true,
noFactions=true
}
dungeonBranches['endgame'] = endgame |
-- LJWM default bootscript
-- Loads files and what not.
local fname = table.remove(arg, 1)
if not fname then
print("Usage: ljwm file.lua [args..]")
os.exit(1)
end
ljwm = require("ljwm")
local f, err = loadfile(fname)
if err then
print("Compilation error: "..err)
end
local success, err = xpcall(f, STP.stacktrace, unpack(arg))
if not success then
io.write(err)
end
|
require("ts3init")
function ScriptLog(logMSG)
if channelJOIN.setting.debug == true then
local tsCol = { 'Green', 'Black', 'Red', 'Blue' }
local RANDCOL = ( tsCol[ math.random( #tsCol ) ] )
local scriptTimestamp = os.date("%x %X")
ts3.printMessageToCurrentTab("[color=Black][[/color][color="..RANDCOL.."]"..scriptTimestamp.."[/color][color=Black]][/color]> ".. channelJOIN.info.prefix ..": "..logMSG)
end
end
ts3.printMessageToCurrentTab("Loading Channel Join Module...")
require("channelJOIN/settings")
if channelJOIN.setting.active == false then
ts3.printMessageToCurrentTab("Channel Join Module deactivated in settings.lua. Shutting down...")
return
end
require("channelJOIN/functions")
local registeredEvents = {}
ScriptLog("init.lua loaded...")
ts3.printMessageToCurrentTab(channelJOIN.info.name.." v"..channelJOIN.info.ver.." by "..channelJOIN.info.author.." loaded successfully!")
ts3RegisterModule(channelJOIN.info.MODULE, registeredEvents)
|
-- Here is where all of your shared hooks should go.
-- Disable entity driving.
function Schema:CanDrive(client, entity)
return false
end
|
local inspect = require 'inspect'
local Queue = {}
local cjson = require 'cjson'
local resty_lock = require "resty.lock"
local function encode(obj)
return cjson.encode(obj)
end
local function decode(str)
return cjson.decode(str)
end
function Queue:new(name)
local obj = { name = name, dict = ngx.shared.queues }
self.__index = self
return setmetatable(obj, self)
end
function Queue:incr(key, increment)
assert(key) -- need key to increment
local key = self:prefix(key)
local increment = increment or 1
local id, err = self.dict:incr(key, increment)
if err then
local ok, err = self.dict:add(key, increment)
if ok then
return increment
else
error("shared queue error getting next id: " .. err)
end
end
return id
end
function Queue:decr(key)
return self:incr(key, -1)
end
function Queue:prefix(key)
return self.name .. "-" .. key
end
function Queue:push(obj)
local id = assert(self:incr('head'))
local key = self.name .. "-" .. tostring(id)
local ok, err = self.dict:add(key, encode(obj))
if not ok and error then
error("error pushing to queue " .. self.name .. ": " .. err)
end
local count = self:incr('count')
end
function Queue:free()
self.dict:flush_expired()
end
function Queue:pop()
local lock = resty_lock:new('locks')
local elapsed = lock:lock("queue-" .. self.name)
if elapsed then
ngx.log(ngx.INFO, '[sq] took ' .. elapsed .. ' to unlock ' .. self.name .. ' queue')
end
local stored = self:get('head')
local processed = self:get('tail')
if processed < stored then -- FIXME: not thread safe, needs locks or different structure
local next_id = self:incr('tail')
local key = self:prefix(next_id)
local value = self.dict:get(key)
if value then
self.dict:delete(key)
self:decr('count')
lock:unlock()
return decode(value)
end
end
lock:unlock()
return
end
function Queue:size()
return self:get('count')
end
function Queue:get(key)
local key = self:prefix(key)
return self.dict:get(key) or 0
end
return Queue
|
--[[----------------------------------------------------------------------------
Copyright (c) 2016-present, Facebook, Inc. All rights reserved.
This source code is licensed under the BSD-style license found in the
LICENSE file in the root directory of this source tree. An additional grant
of patent rights can be found in the PATENTS file in the same directory.
------------------------------------------------------------------------------]]
require 'inn'
require 'cudnn'
require 'fbcoco'
local utils = paths.dofile'model_utils.lua'
local data = torch.load'data/models/imagenet_pretrained_vgg.t7'
local features = utils.safe_unpack(data.features)
local top = utils.safe_unpack(data.top)
-- kill first 4 conv layers; the convolutions are at {1,3,6,8,11,13}
utils.disableFeatureBackprop(features, 10)
for k,v in ipairs(top:findModules'nn.Dropout') do v.inplace = true end
local model = nn.Sequential()
:add(nn.ParallelTable()
:add(utils.makeDataParallel(features))
:add(nn.Identity())
)
:add(inn.ROIPooling(7,7,1/16))
:add(nn.View(-1):setNumInputDims(3))
:add(top)
:add(utils.classAndBBoxLinear(4096))
model:cuda()
utils.testModel(model)
return {model, utils.RossTransformer()}
|
Hooks:PostHook(GameStateMachine, "init", "BeardLibEditorGameStateInit", function(self)
local editor
local editor_func
local ingame_waiting_for_players
local ingame_waiting_for_players_func
local ingame_waiting_for_respawn
for state in pairs(self._transitions) do
if state._name == "ingame_waiting_for_respawn" then
ingame_waiting_for_respawn = state
end
if state._name == "ingame_waiting_for_players" then
ingame_waiting_for_players = state
ingame_waiting_for_players_func = callback(nil, state, "default_transition")
end
if state._name == "editor" then
editor = state
editor_func = callback(nil, state, "default_transition")
end
end
if editor and ingame_waiting_for_players and ingame_waiting_for_respawn then
self:add_transition(editor, ingame_waiting_for_players, editor_func)
self:add_transition(editor, ingame_waiting_for_respawn, editor_func)
self:add_transition(ingame_waiting_for_players, editor, ingame_waiting_for_players_func)
end
end) |
buffer = Procedural.TextureBuffer(128)
Procedural.Cell(buffer):setDensity(4):setRegularity(234):process()
Procedural.Vortex(buffer):process()
tests:addTextureBuffer(buffer)
dotfile = tests:getDotFile("texture_29", "Vortex_Demo")
dotfile:set("Cell", "texture_cell_smooth", "Vortex", "texture_vortex")
|
------------------------------------------------------------------------------
--
-- This file is part of the Corona game engine.
-- For overview and more information on licensing please refer to README.md
-- Home page: https://github.com/coronalabs/corona
-- Contact: support@coronalabs.com
--
------------------------------------------------------------------------------
-- fake out some things commonly found in config.lua
system = {}
system.getInfo = function(...) return ""; end
display = {}
display.pixelHeight = 480
display.pixelWidth = 320
-- These are items we recognize but cannot validate the contents of (generally because they're arbitrary)
stoplist = {"shaderPrecision"}
application = {
content = {
minContentWidth = 1,
minContentHeight = 1,
maxContentWidth = 1,
maxContentHeight = 1,
fps = 60,
audioPlayFrequency = 1,
shaderPrecision = "",
},
license = {
google = {
key = "",
policy = "serverManaged",
mapsKey = "",
}
},
notification = {
iphone = {
types = {
"badge", "sound", "alert"
}
},
google =
{
projectNumber = "",
},
},
steamworks =
{
appId = "",
},
}
|
-- mod_offline_hints
--
-- Copyright (C) 2019 Marcos de Vera Piquero <marcos.devera@quobis.com>
--
-- This file is MIT/X11 licensed.
--
-- A module to discard hinted messages with no-store at mod_offline
--
module:depends"offline";
local function handle_offline (event)
local stanza = event.stanza;
if (stanza:get_child("no-store", "urn:xmpp:hints") or
stanza:get_child("no-permanent-store", "urn:xmpp:hints")) then
module:log("debug", "Not storing offline stanza: %s (urn:xmpp:hints)", stanza);
return false;
end
return nil;
end
module:hook("message/offline/handle", handle_offline);
module:log("debug", "Module loaded");
|
--[[
FastText - Code for training a new model
]]--
require 'torch'
require 'io'
require 'nn'
require 'sys'
require 'os'
require 'xlua'
require 'lfs'
require 'pl.stringx'
require 'pl.file'
tds = require('tds')
utils = require('utils')
cmd = torch.CmdLine()
cmd:option('-input', 'data/ag_news.train', 'training file path')
cmd:option('-output', 'ag_news.t7', 'output file path')
cmd:option('-lr', 0.05, 'learning rate')
cmd:option('-lrUpdateRate', 100, 'change the rate of updates for the learning rate')
cmd:option('-dim', 10, 'size of word vectors')
cmd:option('-epoch', 5, 'number of epochs')
cmd:option('-wordNgrams', 1, 'max length of word ngram')
cmd:option('-seed', 123, 'seed for the randum number generator')
cmd:option('-gpu', 1, 'whether to use gpu (1 = use gpu, 0 = not)')
cmd:option('-preTrain', 0, 'initialize word embeddings with pre-trained vectors?')
cmd:option('-preTrainFile', '../mem_absa/data/glove.6B.300d.txt', 'file containing the pre-trained word embeddings (should be in http://nlp.stanford.edu/projects/glove/ format). this is valid iff preTrain=1.')
params = cmd:parse(arg)
torch.manualSeed(params.seed)
print('building the vocab...')
utils.build_vocab(params)
print('converting the data to tensors...')
utils.get_tensors(params)
print('defining the model...')
params.ngram_lookup = nn.LookupTable(#params.index2ngram, params.dim)
params.linear_pred_layer = nn.Linear(params.dim, #params.index2label, false) -- set 'false' to exclude the bias
params.model = nn.Sequential():add(params.ngram_lookup):add(nn.Mean()):add(params.linear_pred_layer)
params.criterion = nn.CrossEntropyCriterion()
params.ngram_lookup.weight:uniform(-1.0 / params.dim, 1 / params.dim)
params.linear_pred_layer.weight:zero()
if params.preTrain > 0 then
print('initializing the pre-trained embeddings...')
local is_present = lfs.attributes(params.preTrainFile) or -1
if is_present ~= -1 then
utils.init_word_weights(params)
else
print('>>>WARNING>>> Specified pre-trained word embedding file is not found at: ' .. params.preTrainFile)
end
end
if params.gpu > 0 then
require 'cutorch'
require 'cunn'
cutorch.setDevice(1)
params.model = params.model:cuda()
params.criterion = params.criterion:cuda()
end
print('training the model...')
params.model:training()
params.token_count, params.local_token_count, params.total_progress = 0, 0, (params.epoch * params.ngram_count)
for e = 1, params.epoch do
xlua.progress(1, #params.dataset)
local indices, epoch_loss = torch.randperm(#params.dataset), 0
for i = 1, #params.dataset do
local input_tensor, label = params.dataset[indices[i]][1], params.dataset[indices[i]][2]
if params.gpu > 0 then input_tensor = input_tensor:cuda() end
params.local_token_count = params.local_token_count + (#input_tensor)[1]
local predictions = params.model:forward(input_tensor)
local loss = params.criterion:forward(predictions, label)
epoch_loss = epoch_loss + loss
local obj_grad = params.criterion:backward(predictions, label)
params.model:zeroGradParameters()
params.model:backward(input_tensor, obj_grad)
params.model:updateParameters(params.lr * (1.0 - (params.token_count / params.total_progress)))
if params.local_token_count > params.lrUpdateRate then
params.token_count = params.token_count + params.local_token_count
params.local_token_count = 0
end
if i % 15 == 0 then xlua.progress(i, #params.dataset) end
if i % 10000 == 0 then collectgarbage() end
end
xlua.progress(#params.dataset, #params.dataset)
print('epoch ' .. e .. ' completed. loss is ' .. (epoch_loss / #params.dataset))
end
print('saving the model...')
torch.save(params.output, params)
|
seconds = 0.5 --must result in an integer when multiplied by 60 |
object_tangible_component_armor_shared_advanced_armor_layer_five = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_advanced_armor_layer_five.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_advanced_armor_layer_five, "object/tangible/component/armor/shared_advanced_armor_layer_five.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_advanced_armor_layer_four = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_advanced_armor_layer_four.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_advanced_armor_layer_four, "object/tangible/component/armor/shared_advanced_armor_layer_four.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_advanced_armor_layer_one = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_advanced_armor_layer_one.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_advanced_armor_layer_one, "object/tangible/component/armor/shared_advanced_armor_layer_one.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_advanced_armor_layer_three = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_advanced_armor_layer_three.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_advanced_armor_layer_three, "object/tangible/component/armor/shared_advanced_armor_layer_three.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_advanced_armor_layer_two = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_advanced_armor_layer_two.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_advanced_armor_layer_two, "object/tangible/component/armor/shared_advanced_armor_layer_two.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_appearance_enhancement_acklay = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_appearance_enhancement_acklay.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_appearance_enhancement_acklay, "object/tangible/component/armor/shared_armor_appearance_enhancement_acklay.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_appearance_enhancement_feather = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_appearance_enhancement_feather.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_appearance_enhancement_feather, "object/tangible/component/armor/shared_armor_appearance_enhancement_feather.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_assault = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_assault.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_assault, "object/tangible/component/armor/shared_armor_core_assault.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_assault_advanced = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_assault_advanced.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_assault_advanced, "object/tangible/component/armor/shared_armor_core_assault_advanced.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_assault_basic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_assault_basic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_assault_basic, "object/tangible/component/armor/shared_armor_core_assault_basic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_assault_standard = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_assault_standard.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_assault_standard, "object/tangible/component/armor/shared_armor_core_assault_standard.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_battle = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_battle.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_battle, "object/tangible/component/armor/shared_armor_core_battle.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_battle_advanced = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_battle_advanced.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_battle_advanced, "object/tangible/component/armor/shared_armor_core_battle_advanced.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_battle_basic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_battle_basic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_battle_basic, "object/tangible/component/armor/shared_armor_core_battle_basic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_battle_standard = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_battle_standard.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_battle_standard, "object/tangible/component/armor/shared_armor_core_battle_standard.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_enhancement_assault = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_enhancement_assault.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_enhancement_assault, "object/tangible/component/armor/shared_armor_core_enhancement_assault.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_enhancement_battle = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_enhancement_battle.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_enhancement_battle, "object/tangible/component/armor/shared_armor_core_enhancement_battle.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_enhancement_recon = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_enhancement_recon.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_enhancement_recon, "object/tangible/component/armor/shared_armor_core_enhancement_recon.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_recon = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_recon.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_recon, "object/tangible/component/armor/shared_armor_core_recon.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_recon_advanced = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_recon_advanced.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_recon_advanced, "object/tangible/component/armor/shared_armor_core_recon_advanced.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_recon_basic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_recon_basic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_recon_basic, "object/tangible/component/armor/shared_armor_core_recon_basic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_core_recon_standard = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_core_recon_standard.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_core_recon_standard, "object/tangible/component/armor/shared_armor_core_recon_standard.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_segment_assault = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_segment_assault.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_segment_assault, "object/tangible/component/armor/shared_armor_segment_assault.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_segment_battle = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_segment_battle.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_segment_battle, "object/tangible/component/armor/shared_armor_segment_battle.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_segment_enhancement_assault = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_segment_enhancement_assault.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_segment_enhancement_assault, "object/tangible/component/armor/shared_armor_segment_enhancement_assault.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_segment_enhancement_battle = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_segment_enhancement_battle.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_segment_enhancement_battle, "object/tangible/component/armor/shared_armor_segment_enhancement_battle.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_segment_enhancement_recon = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_segment_enhancement_recon.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_segment_enhancement_recon, "object/tangible/component/armor/shared_armor_segment_enhancement_recon.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_armor_segment_recon = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_armor_segment_recon.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_armor_segment_recon, "object/tangible/component/armor/shared_armor_segment_recon.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_bio_cartridge = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_bio_cartridge.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_bio_cartridge, "object/tangible/component/armor/shared_bio_cartridge.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_new_armor_core_test = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_new_armor_core_test.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_new_armor_core_test, "object/tangible/component/armor/shared_new_armor_core_test.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_new_armor_layer_test = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_new_armor_layer_test.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_new_armor_layer_test, "object/tangible/component/armor/shared_new_armor_layer_test.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_new_armor_segment_test = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_new_armor_segment_test.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_new_armor_segment_test, "object/tangible/component/armor/shared_new_armor_segment_test.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_power_bit = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_power_bit.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_power_bit, "object/tangible/component/armor/shared_power_bit.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_shield_generator_personal_borvo = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_shield_generator_personal_borvo.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_shield_generator_personal_borvo, "object/tangible/component/armor/shared_shield_generator_personal_borvo.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_shield_generator_personal_droideka = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_shield_generator_personal_droideka.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_shield_generator_personal_droideka, "object/tangible/component/armor/shared_shield_generator_personal_droideka.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_shield_generator_personal_old_republic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_shield_generator_personal_old_republic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_shield_generator_personal_old_republic, "object/tangible/component/armor/shared_shield_generator_personal_old_republic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_acid = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_acid.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_acid, "object/tangible/component/armor/shared_standard_armor_layer_acid.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_blast = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_blast.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_blast, "object/tangible/component/armor/shared_standard_armor_layer_blast.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_cold = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_cold.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_cold, "object/tangible/component/armor/shared_standard_armor_layer_cold.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_electrical = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_electrical.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_electrical, "object/tangible/component/armor/shared_standard_armor_layer_electrical.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_energy = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_energy.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_energy, "object/tangible/component/armor/shared_standard_armor_layer_energy.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_heat = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_heat.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_heat, "object/tangible/component/armor/shared_standard_armor_layer_heat.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_kinetic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_kinetic.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_kinetic, "object/tangible/component/armor/shared_standard_armor_layer_kinetic.iff")
------------------------------------------------------------------------------------------------------------------------------------
object_tangible_component_armor_shared_standard_armor_layer_stun = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/component/armor/shared_standard_armor_layer_stun.iff"
}
ObjectTemplates:addClientTemplate(object_tangible_component_armor_shared_standard_armor_layer_stun, "object/tangible/component/armor/shared_standard_armor_layer_stun.iff")
------------------------------------------------------------------------------------------------------------------------------------
|
local M = {}
M.__index = M
function M.create()
local m = setmetatable({}, M)
return m
end
function M:watch(obj, cb)
local v = self._viewers
if not v then
v = {}
self._viewers = v
end
v[obj] = cb
end
function M:unwatch(obj)
local v = self._viewers
if v then
v[obj] = nil
end
end
function M:dirty()
local v = self._viewers
if v then
for obj, cb in pairs(v) do
cb(obj, self)
end
end
end
return M
|
local a = require "plenary.async.async"
local Deque = require("plenary.async.structs").Deque
local tbl = require "plenary.tbl"
local M = {}
local Condvar = {}
Condvar.__index = Condvar
---@class Condvar
---@return Condvar
function Condvar.new()
return setmetatable({ handles = {} }, Condvar)
end
---`blocks` the thread until a notification is received
Condvar.wait = a.wrap(function(self, callback)
-- not calling the callback will block the coroutine
table.insert(self.handles, callback)
end, 2)
---notify everyone that is waiting on this Condvar
function Condvar:notify_all()
for i, callback in ipairs(self.handles) do
callback()
self.handles[i] = nil
end
end
---notify randomly one person that is waiting on this Condvar
function Condvar:notify_one()
if #self.handles == 0 then
return
end
local idx = math.random(#self.handles)
self.handles[idx]()
table.remove(self.handles, idx)
end
M.Condvar = Condvar
local Semaphore = {}
Semaphore.__index = Semaphore
---@class Semaphore
---@param initial_permits number: the number of permits that it can give out
---@return Semaphore
function Semaphore.new(initial_permits)
vim.validate {
initial_permits = {
initial_permits,
function(n)
return n > 0
end,
"number greater than 0",
},
}
return setmetatable({ permits = initial_permits, handles = {} }, Semaphore)
end
---async function, blocks until a permit can be acquired
---example:
---local semaphore = Semaphore.new(1024)
---local permit = await(semaphore:acquire())
---permit:forget()
---when a permit can be acquired returns it
---call permit:forget() to forget the permit
Semaphore.acquire = a.wrap(function(self, callback)
if self.permits > 0 then
self.permits = self.permits - 1
else
table.insert(self.handles, callback)
return
end
local permit = {}
permit.forget = function(self_permit)
self.permits = self.permits + 1
if self.permits > 0 and #self.handles > 0 then
self.permits = self.permits - 1
local callback = table.remove(self.handles)
callback(self_permit)
end
end
callback(permit)
end, 2)
M.Semaphore = Semaphore
M.channel = {}
---Creates a oneshot channel
---returns a sender and receiver function
---the sender is not async while the receiver is
---@return function, function
M.channel.oneshot = function()
local val = nil
local saved_callback = nil
local sent = false
local received = false
local is_single = false
--- sender is not async
--- sends a value which can be nil
local sender = function(...)
assert(not sent, "Oneshot channel can only send once")
sent = true
if saved_callback ~= nil then
saved_callback(...)
return
end
-- optimise for when there is only one or zero argument, no need to pack
local nargs = select("#", ...)
if nargs == 1 or nargs == 0 then
val = ...
is_single = true
else
val = tbl.pack(...)
end
end
--- receiver is async
--- blocks until a value is received
local receiver = a.wrap(function(callback)
assert(not received, "Oneshot channel can only receive one value!")
if sent then
received = true
if is_single then
return callback(val)
else
return callback(tbl.unpack(val))
end
else
saved_callback = callback
end
end, 1)
return sender, receiver
end
---A counter channel.
---Basically a channel that you want to use only to notify and not to send any actual values.
---@return function: sender
---@return function: receiver
M.channel.counter = function()
local counter = 0
local condvar = Condvar.new()
local Sender = {}
function Sender:send()
counter = counter + 1
condvar:notify_all()
end
local Receiver = {}
Receiver.recv = function()
if counter == 0 then
await(condvar:wait())
end
counter = counter - 1
end
Receiver.last = function()
if counter == 0 then
await(condvar:wait())
end
counter = 0
end
return Sender, Receiver
end
---A multiple producer single consumer channel
---@return table
---@return table
M.channel.mpsc = function()
local deque = Deque.new()
local condvar = Condvar.new()
local Sender = {}
function Sender.send(...)
deque:pushleft { ... }
condvar:notify_all()
end
local Receiver = {}
Receiver.recv = function()
if deque:is_empty() then
condvar:wait()
end
return unpack(deque:popright())
end
Receiver.last = function()
if deque:is_empty() then
condvar:wait()
end
local val = deque:popright()
deque:clear()
return unpack(val)
end
return Sender, Receiver
end
return M
|
local xml2lua = require("xml2lua")
local handler = require("xmlhandler.tree")
local simple_lua_with_attributes = {
{age=42, name="Manoela", salary=42.1, city="Brasília-DF", _attr={ type="legal" }, music={_attr={like="true"}} },
{age=42, name="Manoel", salary=42.1, city="Palmas-TO", _attr={ type="natural" }, music={_attr={like="true"}} },
}
local simple_xml_with_attributes = [[<people>
<person type="legal">
<age>42</age>
<name>Manoela</name>
<salary>42.1</salary>
<city>Brasília-DF</city>
<music like="true"/>
</person>
<person type="natural">
<age>42</age>
<name>Manoel</name>
<salary>42.1</salary>
<city>Palmas-TO</city>
<music like="true"/>
</person>
</people>
]]
describe("Basic structure with attributes Acceptance Tests ::", function()
describe("From XML to lua table ::", function()
it("parses tags and attributes", function()
local parser = xml2lua.parser(handler)
parser:parse(simple_xml_with_attributes)
local people = handler.root.people
assert.is.equals(2, #people.person, "there should have 2 people")
assert.is.equals("Manoela", people.person[1].name)
assert.is.equals("42", people.person[1].age) -- it handles number
assert.is.equals("42.1", people.person[1].salary) -- it handles number
assert.is.equals("legal", people.person[1]._attr.type) -- it handles attributes
assert.is.equals("true", people.person[1].music._attr.like) -- it single node attributes (boolean value)
assert.is.equals("Manoel", people.person[2].name) -- it handles string
assert.is.equals("42", people.person[2].age) -- it handles number
assert.is.equals("42.1", people.person[2].salary) -- it handles number
assert.is.equals("natural", people.person[2]._attr.type) -- it handles attributes
assert.is.equals("true", people.person[2].music._attr.like) -- it single node attributes (boolean value)
end)
end)
describe("From lua table to XML ::", function()
it("parses table members and _attr as attributes", function()
local parsedXml = xml2lua.toXml(simple_lua_with_attributes, "people")
assert.is.truthy(string.find(parsedXml, "Manoela"))
assert.is.truthy(string.find(parsedXml, "Manoel"))
assert.is.falsy(string.find(parsedXml, "Manuca"))
end)
end)
end)
|
-- This useful to add to objects that need to have some kind of relationship with their parents.
-- Call the appropriate function in the object's update function every frame.
-- The game object must have a .parent attribute defined and pointing to another game object.
Parent = Object:extend()
-- Follows the parent's transform exclusively.
-- This means that if the parent dies the entity also dies.
-- The .parent attribute is niled on death.
function Parent:follow_parent_exclusively()
if self.parent and self.parent.dead then
self.parent = nil
self.dead = true
return
end
self.x, self.y = self.parent.x, self.parent.y
self.r = self.parent.r
self.sx, self.sy = self.parent.sx, self.parent.sy
end
|
g_Root = getRootElement()
g_ResRoot = getResourceRootElement()
local g_Game = false
local function init()
import("mapmgr")
import("roommgr")
end
local function cleanup()
for room, game in pairs(Game.roomToGame) do
game:destroy(true)
end
end
function startGamemodeInRoom(room)
if(not Game.roomToGame[room]) then
Game.create(room)
end
end
function stopGamemodeInRoom(room)
local game = Game.roomToGame[room]
if(game) then
game:destroy()
end
end
function isGhostModeEnabled(room)
local game = Game.roomToGame[room]
if(not game) then return false end
return game.ghostMode
end
function setGhostModeEnabled(room, enabled)
local game = Game.roomToGame[room]
if(not game) then return false end
game:setGhostMode(enabled)
return true
end
addEventHandler("onResourceStart", g_ResRoot, init)
addEventHandler("onResourceStop", g_ResRoot, cleanup)
|
--------------------------------------------------------------------------------
Libraries.Strings = {}
--------------------------------------------------------------------------------
-- Strings Library
--------------------------------------------------------------------------------
-- Return first word string
-- String = String to find word from.
-- Start: Position to start from in the word.
Libraries.Strings.getFirstWord = function(string, start)
return string.sub(string, 1, string.len(start)) == start
end
--------------------------------------------------------------------------------
-- Return number in text or nil
Libraries.Strings.getFirstNumber = function(text)
local n = nil
if string.match(text, "%d+") then n = tonumber(string.match(text, "%d+")) end
return n
end
--------------------------------------------------------------------------------
-- Sends white info message.
Libraries.Strings.whiteInfoMessage = function(text)
return modules.game_textmessage.displayGameMessage(text)
end
--------------------------------------------------------------------------------
-- Sends white status message.
Libraries.Strings.statusMessage = function(text, logInConsole)
return not logInConsole and modules.game_textmessage.displayFailureMessage(text) or modules.game_textmessage.displayStatusMessage(text)
end
--------------------------------------------------------------------------------
-- Sends red status message.
Libraries.Strings.broadcastMessage = function(text)
return modules.game_textmessage.displayBroadcastMessage(text)
end
--------------------------------------------------------------------------------
|
require "UnLua"
local M = Class()
function M:Test1(Array)
return Array:Length()
end
function M:Test2()
local Array = UE.TArray(0)
Array:Add(1)
Array:Add(2)
return Array
end
function M:SetResult(Key, Value)
_G[Key] = Value
end
return M
|
object_ship_yt1300_tier7 = object_ship_shared_yt1300_tier7:new {
}
ObjectTemplates:addTemplate(object_ship_yt1300_tier7, "object/ship/yt1300_tier7.iff")
|
--Copyright (C) 2009 <SWGEmu>
--This File is part of Core3.
--This program is free software; you can redistribute
--it and/or modify it under the terms of the GNU Lesser
--General Public License as published by the Free Software
--Foundation; either version 2 of the License,
--or (at your option) any later version.
--This program is distributed in the hope that it will be useful,
--but WITHOUT ANY WARRANTY; without even the implied warranty of
--MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--See the GNU Lesser General Public License for
--more details.
--You should have received a copy of the GNU Lesser General
--Public License along with this program; if not, write to
--the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
--Linking Engine3 statically or dynamically with other modules
--is making a combined work based on Engine3.
--Thus, the terms and conditions of the GNU Lesser General Public License
--cover the whole combination.
--In addition, as a special exception, the copyright holders of Engine3
--give you permission to combine Engine3 program with free software
--programs or libraries that are released under the GNU LGPL and with
--code included in the standard release of Core3 under the GNU LGPL
--license (or modified versions of such code, with unchanged license).
--You may copy and distribute such a system following the terms of the
--GNU LGPL for Engine3 and the licenses of the other code concerned,
--provided that you include the source code of that other code when
--and as the GNU LGPL requires distribution of source code.
--Note that people who make modified versions of Engine3 are not obligated
--to grant this special exception for their modified versions;
--it is their choice whether to do so. The GNU Lesser General Public License
--gives permission to release a modified version without this exception;
--this exception also makes it possible to release a modified version
--which carries forward this exception.
object_tangible_powerup_weapon_shared_heavy = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_heavy.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_high_power_module.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524292,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_heavy",
gameObjectType = 524292,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_heavy",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 717357125,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_heavy, "object/tangible/powerup/weapon/shared_heavy.iff")
object_tangible_powerup_weapon_shared_melee = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_melee.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_blade_vibro_unit.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524289,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_melee",
gameObjectType = 524289,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_melee",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 1636293712,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_melee, "object/tangible/powerup/weapon/shared_melee.iff")
object_tangible_powerup_weapon_shared_melee_generic = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_melee_generic.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_repair_melee_weapon.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524289,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_melee",
gameObjectType = 524289,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_melee_generic",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 1375892401,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_melee.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_melee_generic, "object/tangible/powerup/weapon/shared_melee_generic.iff")
object_tangible_powerup_weapon_shared_melee_lightsaber = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_melee_lightsaber.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_repair_melee_weapon_lightsaber.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524289,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_melee",
gameObjectType = 524289,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_melee_lightsaber",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 1890042255,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_melee.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_melee_lightsaber, "object/tangible/powerup/weapon/shared_melee_lightsaber.iff")
object_tangible_powerup_weapon_shared_mine = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_mine.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_sensor_package_unit.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524293,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_mine",
gameObjectType = 524293,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_mine",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 2304219525,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_mine, "object/tangible/powerup/weapon/shared_mine.iff")
object_tangible_powerup_weapon_shared_mine_explosive = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_mine_explosive.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/wp_sp_ppack_bomb.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524293,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_mine",
gameObjectType = 524293,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_mine_explosive",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 3665923080,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_mine.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_mine_explosive, "object/tangible/powerup/weapon/shared_mine_explosive.iff")
object_tangible_powerup_weapon_shared_ranged = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_ranged.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_blaster_power_handler.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524290,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_ranged",
gameObjectType = 524290,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_ranged",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 1637218728,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_ranged, "object/tangible/powerup/weapon/shared_ranged.iff")
object_tangible_powerup_weapon_shared_ranged_barrel = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_ranged_barrel.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_blaster_rifle_barrel.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524290,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_ranged",
gameObjectType = 524290,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_ranged_barrel",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 137262486,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_ranged.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_ranged_barrel, "object/tangible/powerup/weapon/shared_ranged_barrel.iff")
object_tangible_powerup_weapon_shared_ranged_grip = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_ranged_grip.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_blaster_power_handler.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524290,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_ranged",
gameObjectType = 524290,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_ranged_grip",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 1312422379,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_ranged.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_ranged_grip, "object/tangible/powerup/weapon/shared_ranged_grip.iff")
object_tangible_powerup_weapon_shared_ranged_muzzle = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_ranged_muzzle.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/wp_muzzle_sm_s06.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524290,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_ranged",
gameObjectType = 524290,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_ranged_muzzle",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 555906025,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_ranged.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_ranged_muzzle, "object/tangible/powerup/weapon/shared_ranged_muzzle.iff")
object_tangible_powerup_weapon_shared_ranged_power = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_ranged_power.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_blaster_power_handler.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524290,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_ranged",
gameObjectType = 524290,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_ranged_power",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 1622710306,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_ranged.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_ranged_power, "object/tangible/powerup/weapon/shared_ranged_power.iff")
object_tangible_powerup_weapon_shared_ranged_scope = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_ranged_scope.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/wp_scope_sm_s04.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524290,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_ranged",
gameObjectType = 524290,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_ranged_scope",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 3758199555,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_ranged.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_ranged_scope, "object/tangible/powerup/weapon/shared_ranged_scope.iff")
object_tangible_powerup_weapon_shared_ranged_stock = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_ranged_stock.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/wp_rifle_laser_stock.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524290,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_ranged",
gameObjectType = 524290,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_ranged_stock",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 2739120425,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_ranged.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_ranged_stock, "object/tangible/powerup/weapon/shared_ranged_stock.iff")
object_tangible_powerup_weapon_shared_thrown = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_thrown.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_comp_ammo_projectile.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524291,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_thrown",
gameObjectType = 524291,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_thrown",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 540983335,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_thrown, "object/tangible/powerup/weapon/shared_thrown.iff")
object_tangible_powerup_weapon_shared_thrown_explosive = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_thrown_explosive.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/wp_sp_ppack_bomb.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524291,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_thrown",
gameObjectType = 524291,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_thrown_explosive",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 2781934180,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_thrown.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_thrown_explosive, "object/tangible/powerup/weapon/shared_thrown_explosive.iff")
object_tangible_powerup_weapon_shared_thrown_wiring = SharedTangibleObjectTemplate:new {
clientTemplateFileName = "object/tangible/powerup/weapon/shared_thrown_wiring.iff"
--Data below here is deprecated and loaded from the tres, keeping for easy lookups
--[[
appearanceFilename = "appearance/eqp_tool_computer_toolkit.apt",
arrangementDescriptorFilename = "",
certificationsRequired = {},
clearFloraRadius = 0,
clientDataFile = "",
clientGameObjectType = 524291,
collisionActionBlockFlags = 0,
collisionActionFlags = 51,
collisionActionPassFlags = 1,
collisionMaterialBlockFlags = 0,
collisionMaterialFlags = 1,
collisionMaterialPassFlags = 0,
containerType = 0,
containerVolumeLimit = 1,
customizationVariableMapping = {},
detailedDescription = "@powerup_d:weapon_thrown",
gameObjectType = 524291,
locationReservationRadius = 0,
lookAtText = "string_id_table",
noBuildRadius = 0,
objectName = "@powerup_n:weapon_thrown_wiring",
onlyVisibleInTools = 0,
paletteColorCustomizationVariables = {},
portalLayoutFilename = "",
rangedIntCustomizationVariables = {},
scale = 1,
scaleThresholdBeforeExtentTest = 0.5,
sendToClient = 1,
slotDescriptorFilename = "",
snapToTerrain = 1,
socketDestinations = {},
structureFootprintFileName = "",
surfaceType = 0,
targetable = 1,
totalCellNumber = 0,
useStructureFootprintOutline = 0,
clientObjectCRC = 569969360,
derivedFromTemplates = {"object/object/base/shared_base_object.iff", "object/tangible/base/shared_tangible_base.iff", "object/tangible/powerup/base/shared_base.iff", "object/tangible/powerup/base/shared_weapon_base.iff", "object/tangible/powerup/weapon/shared_thrown.iff"}
]]
}
ObjectTemplates:addClientTemplate(object_tangible_powerup_weapon_shared_thrown_wiring, "object/tangible/powerup/weapon/shared_thrown_wiring.iff")
|
-- load the GPU UI plugin modules
ae.modules.loadAll({
'ui.gpu.string',
'ui.gpu.Image',
'ui.gpu.Label',
'ui.gpu.Button',
'ui.gpu.layout.builder.image',
'ui.gpu.layout.builder.label'
}) |
require('indent_blankline').setup({
char = '|',
buftype_exclude = { 'terminal' },
filetype_exclude = { 'dashboard' },
show_trailing_blankline_indent = false,
use_treesitter = true,
})
|
--- Connection.
-- <br>
-- <i>Note</i>: The fields listed below are only available to objects created via Connection:New unless otherwise specified
-- <br>
-- @class table
-- @name Connection
-- @field Event A list of functions to handle various IRC events, indexed via the event name. Events will not be handled if not present in this table <br><i>Note</i>: Available outside of objects created via Connection:New
-- @field Format A list of functions to handle the display a various IRC events, indexed via the event name. Events not present in this table will be displayed in their raw format <br><i>Note</i>: Available outside of objects created via Connection:New
-- @field LastDisplay Last connection to display data, used by Connection:Display <br><i>Note</i>: Available outside of objects created via Connection:New
-- @field Retries Number of connection retry attempts
-- @field Server The server to connect to
-- @field Port The port to use
-- @field ShouldReconnect Whether it should retry a connection after failure
-- @field ConnectStatus Status of the connection
-- @field Timers A list of timers
-- @field Bot The bot that owns this connection
-- @field Settings A table of settings
-- @field Settings.MaxRetries Number of connection retries to attempt before giving up
-- @field Settings.Timeout Number of seconds to wait for data from the server before deciding the connection has timed out
-- @field Settings.ChannelQueue A table of channels to join after a successful connection
-- @field Settings.AltNames A table of possible names
-- @field Settings.Name The current name used by the connection
-- @field Settings.NameIndex The index for Settings.AltNames which holds the current name
-- @field Settings.AuthCmd The command to send to the server to authenticate with services
-- @field Settings.RetryDelay The number of second to wait between connection retry attempts
Connection = {}
--[[Connection.Prototype = {
Server = "localhost",
Port = 6667,
MaxRetries = 5,
Timeout = 420,
AuthCmd = "",
RetryDelay = 5
}]]
Connection.Event = {}
Connection.Format = {}
Connection.LastDisplay = nil
--- Connection metatable.
-- <br>
-- @class table
-- @name Connection_mt
-- @field __index Index
-- @field __type Type
Connection_mt = {}
Connection_mt.__index = Connection
Connection_mt.__type = "Connection"
TableTypes["Connection"] = true
DISCONNECTED = 0
CONNECTING = 1
CONNECTED = 2
RETRY = 3
function Connection:New()
return setmetatable({Retries = 0, Server = "", Port = 0, ShouldReconnect = true, ConnectionStatus = DISCONNECTED, Timers = {}, Bot = nil, Settings = {MaxRetries = 5, Timeout = 420, ChannelQueue = {}, AltNames = {}, Name = "", NameIndex = 1, AuthCmd = "", RetryDelay = 5}},Connection_mt)
end
function Connection:Think()
self:DoTimers()
end
function Connection:Display(str)
if (Connection.LastDisplay ~= self) then
Connection.LastDisplay = self
print("[Bot: " .. self.Bot.ID .."][Connection: ".. self.Server .."(".. self.Settings.Name ..")]")
end
print("\t".. str)
end
function Connection:Nick(nick)
if self.ConnectionStatus ~= DISCONNECTED and self.ConnectionStatus ~= RETRY then
self:Raw("NICK ".. nick .."\r\n")
end
end
function Connection:Msg(to,message)
self:Raw("PRIVMSG ".. to .." :".. message .."\r\n")
end
function Connection:Join(channel,password)
self:Raw("JOIN ".. channel .." ".. (password or "") .."\r\n")
end
function Connection:CTCP(to,message)
self:Msg(to,string.char(1) .. message .. string.char(1))
end
function Connection:Raw(message)
--table.insert(self.MessageQueue,message)
self.Socket:send(message)
end
function Connection:JoinChannels()
for i = 1, #self.Settings.ChannelQueue do
self:Join(self.Settings.ChannelQueue[i].channel,self.Settings.ChannelQueue[i].password)
end
end
function Connection:Parse(str)
local from, event, extra = string.match(str,"^%:?(%S+)%s(%S+)%s?(.*)")
self:Timer("timeout",self.Settings.Timeout,1,self.Timeout,{self})
if (from == "PING") then
self:Raw("PONG ".. event .."\r\n")
else
if (self.Event[event]) then
self.Event[event](self,from,extra)
end
end
if (self.Format[event]) then
self.Format[event](self,from,extra)
else
self:Display(str)
end
end
function Connection:Timer(name,delay,reps,func,args)
if (reps == 0) then
reps = -1
end
if (delay == "off") then
self.Timers[name] = nil
return
end
if (name == nil) then
return false, "name expected for first parameter, got nil"
end
if (type(name) ~= "string") and (type(name) ~= "number") then
return false, "String or number expected for timer name, got ".. type(name)
end
if (delay == nil) and (reps == nil) and (func == nil) and (args == nil) then
if (self.Timers[name]) then
local ttable = self.Timers[name]
return ttable
else
return false
end
end
if (self.Timers[name]) then
local ttable = {}
ttable.delay = delay
ttable.reps = reps
ttable.func = func
ttable.args = args
ttable.starttime = os.time()
self.Timers[name] = Merge(self.Timers[name],ttable)
return self.Timers[name]
else
self.Timers[name] = {}
self.Timers[name].delay = delay
self.Timers[name].reps = reps
self.Timers[name].func = func
self.Timers[name].args = args
self.Timers[name].starttime = os.time()
return self.Timers[name]
end
end
function Connection:DoTimers()
local Timers = self.Timers
for k,v in pairs(Timers) do
difference = os.time() - Timers[k].starttime
if (difference >= Timers[k].delay) then
if (Timers[k].reps ~= -1) then
Timers[k].reps = Timers[k].reps - 1
func = Timers[k].func
Timers[k].func(self,unpack(Timers[k].args))
if (Timers[k]) then -- make sure the function we just called didn't remove the timer to avoid some nasty errors
Timers[k].starttime = os.time()
if (Timers[k].reps == 0) then
Timers[k] = nil
end
end
else
Timers[k].func(unpack(Timers[k].args))
if (Timers[k]) then
Timers[k].starttime = os.time()
end
end
end
end
end
function Connection:Read()
--Timer(tostring(self) .."_timeout",Timeout,1,self.Disconnect,{self})
local Received,Error = self.Socket:receive()
if (Received ~= nil) then
self:Timer("timeout",self.Settings.Timeout,1,self.Timeout,{})
self:Parse(Received)
end
if (Error ~= nil) then
self:Display("Error: ".. Error)
if (Error == "closed") then
if (self.ShouldReconnect == true) then
self:ConnectionFailure()
end
end
end
end
function Connection:Timeout()
self:Display(self.Server ..">> Connection timed out!")
self:ConnectionFailure()
end
function Connection:ConnectionFailure()
self.ConnectionStatus = RETRY
if (self.Socket ~= nil) then
self.Socket:close()
SetObject(self.Socket,nil)
self.Socket = nil
end
if (self.Retries == self.Settings.MaxRetries) then
self:Display("Retry limt reached!")
self.ConnectionStatus = DISCONNECTED
Connections[tostring(self)] = nil
self.Bot.Connections[tostring(self)] = nil
self.Bot:ConnectionFailure(self)
else
self.Retries = self.Retries + 1
self:Timer("reconnect",self.Settings.RetryDelay,1,self.Connect,{self})
end
end
function Connection:Close()
SetObject(self.Socket,nil)
self.Socket:close()
self.MessageQueue = {}
self.ConnectionStatus = DISCONNECTED
Connections[tostring(self)] = nil
end
function Connection:Quit(message)
self:Raw("QUIT :".. (message or "") .."\r\n")
self.ShouldReconnect = false
end
function Connection:Connect()
if (self.ConnectionStatus == CONNECTED) then return end
if (self.ConnectionStatus == DISCONNECTED) then
self:Display("Connecting to ".. self.Server .." on port ".. self.Port ..".")
Connections[tostring(self)] = self
self.Socket,err = socket.connect(self.Server,self.Port)
SetObject(self.Socket,self)
end
if (self.ConnectionStatus == RETRY) then
self:Display("Connecting to ".. self.Server .." on port ".. self.Port ..". ".. self.Retries .."/".. self.Settings.MaxRetries)
self.Socket,err = socket.connect(self.Server,self.Port)
SetObject(self.Socket,self)
end
if (err ~= nil) then
self:Display("Error connecting to ".. self.Server ..": ".. err)
self:ConnectionFailure()
else
self.ConnectionStatus = CONNECTING
self:Nick(self.Settings.Name)
self:Raw("USER ".. self.Settings.Name .." * 8 :Sir Reddington\r\n")
self:Timer("timeout",self.Settings.Timeout,1,self.Timeout,{self})
end
end
Connection.Event["001"] = function(self)
self:Raw(self.Settings.AuthCmd .."\r\n")
self:Raw("MODE ".. self.Settings.Name .." +x\r\n")
self:JoinChannels()
self.ConnectionStatus = CONNECTED
self.Retries = 0
end
Connection.Event["433"] = function(self)
if (self.ConnectionStatus == CONNECTING) then
local Settings = self.Settings
if (Settings.NameIndex ~= #Settings.AltNames) then
Settings.NameIndex = Settings.NameIndex + 1
Settings.Name = Settings.AltNames[Settings.NameIndex]
self:Nick(Settings.Name)
end
end
end
--- Tits.
Connection.Event["PRIVMSG"] = function(self,from,text)
--self:DisplayTable(text)
local Nick, Ident, Host = string.match(from,"(.+)%!(.+)%@(.+)")
local To, Text = string.match(text,"(%S+)%s:(.+)")
local argtable = {Bot = self.Bot, Connection = self, Nick = Nick, Ident = Ident, Host = Host, To = To, Text = Text}
if (To == self.Settings.Name) then
argtable.IsPrivate = true
else
argtable.IsPrivate = false
end
if (string.match(text,"%".. string.char(1) .."(.+)%".. string.char(1))) then --Possible CTCP
local Command, Text = string.match(text,"%".. string.char(1) .."(.+)%".. string.char(1))
argtable.Command = Command
argtable.Text = Text
if (Command == "ACTION") then
self.Bot:DoHook("ACTION",argtable)
else
local res = self.Bot:DoCTCP(Command,argtable)
if (not res) then
self.Bot:DoHook("CTCP",argtable)
end
end
else
local res = self.Bot:DoCmd(string.match(Text,"(%S+)"),argtable)
if (not res) then
self.Bot:DoHook("PRIVMSG",argtable)
end
end
end
Connection.Format["PRIVMSG"] = function(self,from,text)
local Nick, Ident, Host = string.match(from,"(.+)%!(.+)%@(.+)")
local Channel, Text = string.match(text,"(%S+)%s:(.+)")
self:Display(Nick .."@".. Channel ..": ".. Text)
end |
local createReducer = require(script.Parent.Parent.lib.Rodux).createReducer
local Cryo = require(script.Parent.Parent.lib.Cryo)
return createReducer({}, {
ADD_TOAST = function(state, action)
return Cryo.List.join(state, {
id = action.id,
body = action.body,
isHovered = false
})
end,
REMOVE_TOAST = function(state, action)
return Cryo.List.filter(state, function(item)
return item.id ~= action.id
end)
end,
SET_HOVERED_TOAST = function(state, action)
return Cryo.List.map(state, function(item)
-- FIXME: this is mutating
item.isHovered = item.id == action.id
return item
end)
end
})
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.